我的脚本有问题,我使用了JqueryUI工具提示,但它不起作用。 示例演示如下。
$(function() {
$("a[id*='product_wrap']").tooltip({
content: function(){return $(this).html().replace('150_','')},
track: true,
});
});
我希望我的工具提示指示图片petplusvn.com/files/sanpham/16/150.jpg
而不是petplusvn.com/files/sanpham/16/150_1.jpg
。
答案 0 :(得分:0)
您可以使用正则表达式替换两个URL(在src和data-original中)
$(function() {
$("a[id*='product_wrap']").tooltip({
content: function(){
var $html = $(this).html().replace(/150_/g, '');
console.log('new HTML: '+$html);
return $html;
},
track: true,
});
});