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.
这个http://jsfiddle.net/jquerybyexample/f9p6C/在 IE8 中对我不起作用。我正在尝试在我的代码中做类似的事情。有什么想法吗?
这是因为您在打开标签后缺少更大的符号
前
currentImage.wrap("<a target='_blank' href='" + currentImage.attr("src") + "'</a>");
后
currentImage.wrap("<a target='_blank' href='" + currentImage.attr("src") + "'></a>");
http://jsfiddle.net/f9p6C/13/