我有一个div标签:
<div id="content"><p></p><a href="#"></a></div>
我想动态地将不同内容插入<p>
标记,并插入<a>
标记的 href 属性。
我正在使用jQuery。
答案 0 :(得分:4)
一样简单:
$("#content > p").html("Some content");
$("#content > a").prop("href", "/new/link.html");
或在链中:
$("#content")
.find("p").html("Some content")
.end()
.find("a").prop("href", "/new/link.html");