从javascript设置字段

时间:2014-11-22 17:02:39

标签: javascript jquery html

我有一个带有id =" t1"的div的主页面,在这个div中我加载了另一个html页面的内容

$("#t1").load("./page2.html");

在我的page2中,我的段落也带有id(id =" text1") 如何从js更改此字段?

谢谢!

1 个答案:

答案 0 :(得分:0)

假设您没有任何冲突,那么它将被放置在同一个DOM中。您只需要正确等待它加载:

$("#t1").load("./page2.html",function(text,status,jqXHR){
   $("#text1").html("This is the internal we are editing");
});

它的文档在http://api.jquery.com/load/