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.
我有 :<img src="myimg.png">
<img src="myimg.png">
我怎样才能用链接包围它?<a href=""><img src="myimg.png"></a>
<a href=""><img src="myimg.png"></a>
所以,我必须创建一个父节点。
我使用 YUI3 或原生 JS。
任何的想法 ?
多谢 :)
只需使用wrap 方法
var img = Y.one('img'); img.wrap('<a href="foo"></a>');
</p>