我有一个在 IE9 和 Firefox 中运行良好的 JavaScript,但在 Chrome 中却不行。我想要一些建议来解决这个问题。
我正在尝试一个很酷的技巧来绕过我从http://www.bram.us/sandbox/roundedcorners/学到的图像的角落。我更新了我的 css 并在上面的站点中包含了 javascript,但实际上所有图像在 Chrome 上都消失了,而其他两个浏览器按预期呈现圆角。
我知道这个脚本也适用于 Chrome,因为http://www.bram.us/sandbox/roundedcorners/在 Chrome 上运行良好。
这是javascript。
jQuery(function($) {
$('img').wrap(function() {
return '<span style="background-image:url(' + $(this).attr('src') + '); height: '+ $(this).height() + 'px; width: '+ $(this).width() + 'px;" class="rounded" />';
});
});
提前致谢!!