我想将 dd 标记的值(html)与另一个变量进行匹配。例如,如果 dd 标签的 id 等于 id1,那么我需要将 的值与存储的变量进行匹配。
到目前为止我有这个,它不属于警报
var matchedItem = msg.d[1][0]["MatchedItem"];
var matchedTag = msg.d[1][0]["MatchedTag"];
$('dd').find( $("#" + matchedTag) ).each( function () {
if ( matchedItem == $(this).html() ) {
alert("we have a match");
}
});
* 编辑 ** matchedItem = 'Brian'matchedTag = '客户名称'
因此,对于每个客户名称。如果布赖恩匹配然后警报。
任何指针将不胜感激。