1

目前脚本是这样的:

  1. 单击链接通过使输入可见来编辑链接
  2. 单击链接之前/下一个 通过使输入可见来编辑链接

我希望当您单击一次链接时不要编辑而是在新窗口中打开页面,并且当您单击双击进行编辑时。

这是脚本:

jsfiddle - 代码

4

2 回答 2

3

http://jsfiddle.net/jaspermogg/pFyNY/1/ - 您可以双击 div 进行编辑,或单击链接打开。那是你想要的吗?

$('.a0').dblclick(function(e){
    e.preventDefault();
    $(this).parent().find('input').val($(this).find('a').text()).show().focus();
    $(this).hide();
})

$('#url0, #url1').each(
    function(index, element){
        $(element).blur(function(){
            $(this).hide().prev().show().find('a').html(this.value);
    })
    }    
);

这是一个 jsFiddle,它将 href 更改为a您将其编辑为的值,以防万一您接下来要尝试执行此操作:-) http://jsfiddle.net/jaspermogg/pFyNY/2/

这是你想要的 jsFiddle - http://jsfiddle.net/jaspermogg/pFyNY/5/

JS-

$('.a0 a').click(function(){

    var href = $(this).attr('href');

    // Redirect only after 500 milliseconds (CHANGE THE 500 IN THE CODE TO DETERMINE HOW LONG THE USER GETS TO DBLCLICK)
    if (!$(this).data('timer')) {
       $(this).data('timer', setTimeout(function () {
          window.location = href;
       }, 500));
    }
    return false; // Prevent default action (redirecting)
});

$('.a0').dblclick(function(){
    clearTimeout($(this).find('a').data('timer'));
    $(this).find('a').data('timer', null);

    $(this).parent().find('input').val($(this).find('a').text()).show().focus();
    $(this).hide();
})

$('#url0, #url1').each(
    function(index, element){
        $(element).blur(function(){
            $(this).hide().prev().show().find('a').html(this.value);
    })
    }    
);

Jquery 启发,在 A Href 上创建双击事件

于 2012-06-22T16:35:59.253 回答
0

使用target="_blank"属性在新页面中打开链接。

<a target="_blank" href="dsad.cas">dsad.cas</a>

并使用 . jquery的dblclick函数来编辑链接

$('.a0').dblclick(function(e){
    e.preventDefault();
    $(this).parent().find('input').val($(this).find('a').text()).show().focus();
    $(this).hide();
})

$('#url0, #url1').each(
    function(index, element){
        $(element).blur(function(){
            $(this).hide().prev().show().find('a').html(this.value);
    })
    }    
);
​

这是演示

于 2012-06-22T16:42:33.510 回答