假设我有以下代码迭代<span>
内部<div>
:
$('#recommendTextArea').children('span').each(function () {
//mentionedFriends.push($(this).html());
var mentionedFriendName = $(this).html();
jQuery.each(friendsList, function () {
if (this.name == mentionedFriendName) {
var facebookId = '@[' + this.id + ']';
}
});
});
我本质上想<span>
用facebookId
. 这样的事情可能吗?如果是怎么办?