遗漏的类型错误:对象功能(ARG1,ARG2)没有方法“申请”(Uncaught TypeError

2019-10-16 18:00发布

我想点击事件从一个元素复制到另一个我在做什么在以下mannner这是不工作

 var arr = $("#engagement_box_content_generic_mention>.data_box>.load_mentions_data_box");
     $.each ( arr , function( key , value){

            console.log( $(this).attr("onclick") );
            if ( key == 0 ) {
                $("#abc").click( $(this).attr('onclick') );
            }
});

的console.log给我喜欢这个print_1317(1317,201205,24,11, '否');

但是当我在applyed元素ABC点击提示错误

  Uncaught TypeError: Object print_1317(1317, 201205, 24, 11, 'no'); has no method 'apply'

提前致谢

文章来源: Uncaught TypeError: Object function(arg1 , arg2) has no method 'apply'