使用jQuery更改div标签中的特定标签

时间:2013-01-19 15:28:09

标签: javascript jquery html

我有一个div标签:

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

我想动态地将不同内容插入<p>标记,并插入<a>标记的 href 属性。

我正在使用jQuery。

1 个答案:

答案 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");