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