我有一个table
,其中包含一些单词。我需要检查表中是否有该单词然后执行操作。我动态生成的table
如下所示:
<div class="newstbl">
<table>
<thead>
<th>News Name</th>
<th>News Locale</th>
</tr>
</thead>
<tbody>
<td>Local News Previlege</td>
<td id="rel">En-US</td>
</tr>
</tbody>
</table>
</div>
当我选择我的下拉列表时,我需要检查表中是否包含选定的下拉词(不是整个词至少包含一些词)
让我们说,如果我从下拉列表中选择我的单词是'Global News Previlege'
然后我的表格包含名称'Local News Previlege'
。在这里,如果两者都包含'Previlege'
字,则需要显示警告'Selected type news already added'
if ($(".newstbl tr:contains('" + NewsArray[0].newstypeName.trim() + "')").length == 0)) {
alert("Selected type news already added.");
}