1

我的代码有问题。我对 JavaScript 几乎一无所知,所以任何帮助将不胜感激。

我想让这个渐变滑块中的横幅和照片(只有三张图片,但每张图片的链接不同)链接到网站上的一个页面。我不知道该怎么做。

这是该网站的链接,因此您可以看到我正在尝试做的事情, http://www.buildings4babies.org

这是我当前的脚本。

(function($) {
    $.fn.aToolTip = function(options) {

        // setup default settings
        var defaults = {
            clickIt: true,
            closeTipBtn: 'aToolTipCloseBtn',
            fixed: false,
            inSpeed: 200,
            outSpeed: 0,
            tipContent: '',
            toolTipClass: 'aToolTip',
            xOffset: 5,
            yOffset: 5
        },

        // This makes it so the users custom options overrides the default ones
        settings = $.extend({}, defaults, options);

        return this.each(function() {
            var obj = $(this);
            // Decide weather to use a title attr as the tooltip content
            if(obj.attr('title')){
                // set the tooltip content/text to be the obj title attribute
                var tipContent = obj.attr('title');  
            } else {
                // if no title attribute set it to the tipContent option in settings
                var tipContent = settings.tipContent;
            }

            // check if obj has a title attribute and if click feature is off
            if(tipContent && !settings.clickIt){    
                // Activate on hover    
                obj.hover(function(el){
                    obj.attr({title: ''});                        
                    $('body').append("<div class='"+ settings.toolTipClass +"'><p class='aToolTipContent'>"+ tipContent +"</p></div>");
                    $('.' + settings.toolTipClass).css({
                        position: 'absolute',
                        display: 'none',
                        zIndex: '50000',
                        top: (obj.offset().top - $('.' + settings.toolTipClass).outerHeight() - settings.yOffset) + 'px',
                        left: (obj.offset().left + 1/2*(obj.outerWidth()) + settings.xOffset) + 'px'
                    })
                    .stop().fadeIn(settings.inSpeed);   
                },
                function(){ 
                    // Fade out
                    $('.' + settings.toolTipClass).stop().fadeOut(settings.outSpeed, function(){$(this).remove();});
                }); 
            }

            // Follow mouse if fixed is false and click is false
            if(!settings.fixed && !settings.clickIt){
                obj.mousemove(function(el){
                    $('.' + settings.toolTipClass).css({
                        top: (el.pageY - $('.' + settings.toolTipClass).outerHeight() - settings.yOffset),
                        left: (el.pageX + settings.xOffset)
                    })
                });         
            }           

            // check if click feature is enabled
            if(tipContent && settings.clickIt){
                // Activate on click    
                obj.click(function(el){
                    obj.attr({title: ''});                        
                    $('body').append("<div class='"+ settings.toolTipClass +"'><p class='aToolTipContent'>"+ tipContent +"</p></div>");
                    $('.' + settings.toolTipClass).append("<a class='"+ settings.closeTipBtn +"' href='#' alt='close'>close</a>");
                    $('.' + settings.toolTipClass).css({
                        position: 'absolute',
                        display: 'none',
                        zIndex: '50000',
                        top: (obj.offset().top - $('.' + settings.toolTipClass).outerHeight() - settings.yOffset) + 'px',
                        left: (obj.offset().left + obj.outerWidth() + settings.xOffset) + 'px'
                    })
                    .fadeIn(settings.inSpeed);  
                    // Click to close tooltip
                    $('.' + settings.closeTipBtn).click(function(){
                        $('.' + settings.toolTipClass).fadeOut(settings.outSpeed, function(){$(this).remove();});
                        return false;
                    });      
                    return false;           
                });
            }

        }); // END: return this

        // returns the jQuery object to allow for chainability.  
        return this;
    };
})(jQuery);
4

1 回答 1

0

我将向您指出 jQuery 方法,因为您已经在使用它。

您需要找出要用作链接元素的图片的元素 ID。在 html 中,它应该如下所示:"id="asdfasdf".

不幸的是,我在您的脚本中找不到插入图片的点。老实说,我认为您没有找对地方,这个功能似乎只显示工具提示

无论如何,一旦找到元素的 id,就可以使用 jQuery 的$('#idofyourelement'). 如果它们没有 id,您可以选择它们。请参阅此处了解介绍。

一旦你选择了你的元素,你可以使用wrap() - 方法在它周围添加一个 html 链接,或者你可以安装一个click - listner并调用一个打开新链接的函数:

function goToLink() {
      window.location = "http://www.whereveryouwant.com"
    }

$("#idofyourpicture").click(goToLink);

对要用作链接的每张图片执行此操作。

于 2012-10-19T01:36:14.257 回答