LoginSignup
1
1

More than 1 year has passed since last update.

ajax通信で、取得したDOMを操作 メモ (v2)

Last updated at Posted at 2017-05-21

バージョンアップ版です。

  $.ajax({
          url: '../表示させたい.html',
          dataType : 'html',
    }).done(function(data){
       $('#sample-text').html(data);

    }).fail(function(data){
        $('#sample-text').html(data);
    });

では、参考までに

1
1
2

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