哪一种是首选方法,为什么?
方法一:
<p>When I'm clicked, add an image under me.</p>
<img src="/path/to/image.gif" />
$('p').hide(); // OR css display:none
$('p').click(function() {
$('img').show();
});
方法二:
<p>When I'm clicked, add an image under me.</p>
$('p').click(function() {
$('<img src="/path/to/image.gif" />').appendTo('p');
});