使用ajax加载方法加载div内容后更改div内容

时间:2018-02-07 06:51:49

标签: javascript jquery ajax

index.html 页面:

enter image description here

enter image description here

我正在使用ajax加载方法加载 new.html 页面,然后尝试更改div#rr的内容,但它不起作用!

任何解决方案?

2 个答案:

答案 0 :(得分:0)

尝试在ajax调用函数中调用该函数。

$('.container').load('new.html',function(){
      $('#rr').html('modified') 
});

下次请不要为代码添加图片。

答案 1 :(得分:0)

为什么您的代码$('#rr').html('modfied');无效,因为您在jquery之前调用了更改ajax.load()方法可以从new.html加载内容,因此您的ID {{1}找不到。因此,在load语句调用load()的complete()之后的修改语句之后,而不是调用修改代码 为:

#rr

请查看jquery文档,了解有关如何使用函数Jquery Documentation for Load() funciton的更多信息。