0

这不应该那么复杂:

我正在使用最简单的工具提示和图像预览使用 jQuery 我正在尝试使用这个示例

如何禁用原始图片上的点击事件,我只想显示工具提示(我不想让点击图片)

如何才能做到这一点?谢谢!

这是当前的样式:

<style>
#preview{
    position:absolute;
    border:1px solid #ccc;
    background:#333;
    padding:5px;
    display:none;
    color:#fff;
    }
</style>

这是Javascript:

this.imagePreview = function(){ 
    /* CONFIG */

        xOffset = 10;
        yOffset = 30;

        // these 2 variable determine popup's distance from the cursor
        // you might want to adjust to get the right result

    /* END CONFIG */
    $("a.preview").hover(function(e){
        this.t = this.title;
        this.title = "";    
        var c = (this.t != "") ? "<br/>" + this.t : "";
        $("body").append("<p id='preview'><img src='"+ this.href +"' alt='Image preview' />"+ c +"</p>");                                
        $("#preview")
            .css("top",(e.pageY - xOffset) + "px")
            .css("left",(e.pageX + yOffset) + "px")
            .fadeIn("fast");                        
    },
    function(){
        this.title = this.t;    
        $("#preview").remove();
    }); 
    $("a.preview").mousemove(function(e){
        $("#preview")
            .css("top",(e.pageY - xOffset) + "px")
            .css("left",(e.pageX + yOffset) + "px");
    });         
};


// starting the script on page load
$(document).ready(function(){
    imagePreview();
});

这是主要的:

<a href="1.jpg" /*class="preview"*/><img src="1s.jpg" alt="gallery thumbnail" /></a>
4

2 回答 2

2

如果您使用的是最新版本的 jQuery:

$('selector').click(false);

对于早期版本:

$('selector').click(function(){return false;});
于 2012-06-05T09:02:52.927 回答
1

我会使用:

    $('.preview').click(function(e) {
        e.preventDefault();
        return false;
    });

(如果您删除围绕 class="preview" 的评论)

于 2012-06-05T09:16:34.197 回答