我的javascript有一些问题

时间:2014-06-09 12:52:58

标签: javascript jquery html tooltip

我的脚本有问题,我使用了JqueryUI工具提示,但它不起作用。 示例演示如下。

http://jsfiddle.net/VFZL7/

$(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

1 个答案:

答案 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,

    });
});

http://jsfiddle.net/7Y8Au/