我正在尝试使用链接包装图像,但我无法这样做。
$j('<img />', {
'src': 'imageSrc.jpg',
'style': 'display:none;',
'id': 'image'
})
.appendTo('#imageWrapper');
我尝试过使用.after,.before和.wrap但链接没有出现或者它们没有环绕图像。
我看过Hanpan's problem and solution,但解决方案并不符合我的要求。
我应该更改我的代码以适合他或我错过了什么吗?