0

我有一个 div 标签:

<div id="content"><p></p><a href="#"></a></div>

我想将动态不同的内容插入<p>标签以及标签的href属性中<a>

我正在使用 jQuery。

4

1 回答 1

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");
于 2013-01-19T15:29:25.790 回答