我想点击事件从一个元素复制到另一个我在做什么在以下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'
提前致谢