我有一个包含一些 HTML 的数组,例如:
var array=[
"<div anAttribute=19 class='foo'>This is the content of the foo div.</div>",
"<div anAttribute=14 class='bar'>This is the content of the bar div.</div>"
];
我想为他们俩获取 anAttribute 的值。
array[0].$('.foo').attr("anAttribute");
将返回 19。