Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 div 标签:
<div id="content"><p></p><a href="#"></a></div>
我想将动态不同的内容插入<p>标签以及标签的href属性中<a>。
<p>
<a>
我正在使用 jQuery。
一样容易:
$("#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");