我想将一个点击事件从一个元素复制到另一个我正在按照不工作的方式进行
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, 'no');
但是当我点击应用的元素 abc 时,它给出了错误
Uncaught TypeError: Object print_1317(1317, 201205, 24, 11, 'no'); has no method 'apply'
提前致谢