LoginSignup
4
4

More than 5 years have passed since last update.

IE6でjqueryでajaxを使うときに気をつけたいこと

Last updated at Posted at 2012-03-28

jqueryでajaxを利用する際、

$.ajax({
 async:    true,
 type:     'GET',
 url:      'http://hoge.co.jp/',
 dataType: 'text',
 success:  function(response) {
    // something to do
 }
});

と普通に取ろうとしても(パラメータは適当)、IE6のバージョンによっては、
successイベントが呼び出されないことがあります。
errorもダメな模様。
completeはいけるらしいが。。。
もしIE6ユーザーが「ロードが終わらない」と言ってきたら確認してみましょう。
ちなみに、僕はIE6用にxmlhttprequestで取得するソースを書きました。
おのれIE6...

4
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
4
4