关于属性操作的Jquery问题

时间:2011-07-22 09:35:29

标签: javascript jquery html

我是jQuery的新手,我无法找到解决问题的方法。 我在我的网站上的一些SVG对象上使用jQuery easytooltip。一切正常,但我需要在运行时更改工具提示的一些属性。我的document.ready函数是这样的:

$(document).ready(function () {
    $("polygon").easyTooltip({
        tooltipId: "easyTooltip2",
        content: 'hello'
    });
});

我希望能够(在鼠标悬停在我的多边形上)从我的多边形中读出属性并将它们传递给内容属性,这在工具提示显示时显示...如何访问内容值到在运行时更改它?

我的插件代码现在看起来像这样:

(function ($) {

$.fn.content = function (_content) {

    $(this).easyToolTip({ content: _content }) 
 };

$.fn.easyTooltip = function (options) {

    // default configuration properties
    var defaults = {
        xOffset: 10,
        yOffset: 25,
        tooltipId: "easyTooltip",
        clickRemove: false,
        content: "",
        useElement: ""
    };


    var options = $.extend(defaults, options);
    var content;


    this.each(function () {
        var title = $(this).attr("title");
        $(this).hover(function (e) {
            content = (options.content != "") ? options.content : title;
            content = (options.useElement != "") ? $("#" + options.useElement).html() : content;
            $(this).attr("title", "");
            if (content != "" && content != undefined) {
                $("body").append("<div id='" + options.tooltipId + "'>" + content + "</div>");
                $("#" + options.tooltipId)
                    .css("position", "absolute")
                    .css("top", (e.pageY - options.yOffset) + "px")
                    .css("left", (e.pageX + options.xOffset) + "px")
                    .css("display", "none")
                    .fadeIn("slow")
            }
        },
        function () {
            $("#" + options.tooltipId).remove();
            $(this).attr("title", title);
        });
        $(this).mousemove(function (e) {
            $("#" + options.tooltipId)
                .css("top", (e.pageY - options.yOffset) + "px")
                .css("left", (e.pageX + options.xOffset) + "px")
        });
        if (options.clickRemove) {
            $(this).mousedown(function (e) {
                $("#" + options.tooltipId).remove();
                $(this).attr("title", title);
            });
        }
    });

};

})(jQuery);

2 个答案:

答案 0 :(得分:0)

结帐.live()

$("polygon").live("mouseover", function() {

     $("polygon").easyTooltip({
           tooltipId: "easyTooltip2",
           content: 'hello'
     });

});

More info

答案 1 :(得分:0)

你可以这样做:

$("polygon").mouseover(function() {

     $("polygon").easyTooltip({
           tooltipId: "easyTooltip2",
           content: 'changedContent'
     });

});

这将重新创建工具提示:更好的选择是仅修改内容,我会查看api以查看是否可能。 (我认为不可能使用插件提供的api,重新创建工具提示)