码迷,mamicode.com
首页 > Web开发 > 详细

jQuery中live()使用报错,TypeError: $(...).live is not a function

时间:2018-08-25 14:38:30      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:top   events   typeerror   blog   右键   jquer   fun   错误   解决   

原地址: https://blog.csdn.net/sdfdyubo/article/details/59536781

1、使用

(1)原写法

    /*为选项卡绑定右键*/
    $(".tabs li").live(‘contextmenu‘, function (e) {
        /*选中当前触发事件的选项卡 */
        var subtitle = $(this).text();
        $(‘#mainTab‘).tabs(‘select‘, subtitle);
        //显示快捷菜单
        $(‘#tab_menu‘).menu(‘show‘, {
            left: e.pageX,
            top: e.pageY
        });
        return false;
    });

(2)调整后的写法

    /*为选项卡绑定右键*/
    $(".tabs").on("contextmenu", "li", function (e) {
        /*选中当前触发事件的选项卡 */
        var subtitle = $(this).text();
        $(‘#mainTab‘).tabs(‘select‘, subtitle);
        //显示快捷菜单
        $(‘#tab_menu‘).menu(‘show‘, {
            left: e.pageX,
            top: e.pageY
        });
        return false;
    });

 

2、说明

jquery中的live()方法在jquery1.9及以上的版本中已被废弃了,如果使用,会抛出TypeError: $(...).live is not a function错误。

解决方法:

之前的用法:

.live(events, function)  

新方法:

.on(eventType, selector, function)

若selector不需要,可传入null

 

例子1:

之前:

$(‘#mainmenu a‘).live(‘click‘, function)

之后:

$(‘#mainmenu‘).on(‘click‘, ‘a‘, function)

 

 

例子2:

之前:

$(‘.myButton‘).live(‘click‘, function)

之后(应使用距离myButton最近的节点):

$(‘#parentElement‘).on(‘click‘, ‘.myButton’, function)

若不知最近的节点,可使用如下的方法:

 

$(‘body‘).on(‘click‘, ‘.myButton’, function)

 

jQuery中live()使用报错,TypeError: $(...).live is not a function

标签:top   events   typeerror   blog   右键   jquer   fun   错误   解决   

原文地址:https://www.cnblogs.com/masonblog/p/9533022.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!