var conversations = new Array();
jQuery('.CChatWindow').each(function(){
if (jQuery(this).is(":visible") && jQuery(this).attr("data-conversationid") != 0) {
alert(jQuery(this).attr("data-conversationid")); // returns 1 and 2
conversations.push = (jQuery(this).attr("data-conversationid"));
}
});
alert(conversations); // returns an empty string
我的代码有什么问题?array.push 似乎不起作用。谢谢!