LoginSignup
5
4

More than 5 years have passed since last update.

IE8でjqueryでxmlパースしてもうまく行かないときの対処(うろおぼえ)

Posted at

想定状況

jquery(バージョン不明)を用いてajaxでxmlを取得する

問題点と解決方法

問題:IE8で確認するとxmlのパース処理がうまくいかない

解決方法

stackoverflowにずばりの回答がありました。
XML not parsing in IE8


$.ajax({
  url:url,
  dataType:'text',
  success:function(response){
    var $xml = $($.parseXML(response));
  }
});

jQuery.parseXML() API仕様
jQuery.parseXML()

5
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4