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>
したがって、parentNode を作成する必要があります。
YUI3 またはネイティブ JS を使用します。
何か案が ?
ありがとう :)
ラップメソッドを使用するだけです
var img = Y.one('img'); img.wrap('<a href="foo"></a>');
</p>