我想在頁面上創建一個Div出現如果一個字在頁面上稍後存在? ,我實際上喜歡它做的是顯示頁面上是否出現10個列表中的任何單詞?我希望找到他們的唯一地方是那個TD班級「sku nobr」之後,那個跨班級「td-title」基本jquery - 如果文本存在TD然後使DIV可見
我是一個總的新手,我得到了它的H1值與此代碼,但我不知道如何做到這一點與4523現在呢?
謝謝!!!!!
<script type="text/javascript">
$(document).ready(function(){
if ($(".sku nobr:contains('4523')").length) {
$("#thingtohide").removeAttr("style").none();
}
});
</script>
<div id="thingtohide" style="display: none;">COOL TEXT TO DISPLAY</div>
<tr class="cart-item-row">
<td class="sku nobr">
<span class="td-title">SKU:</span>
4523
</td>
</tr>
重複:jQuery的:檢查,看看是否div包含文本,然後採取行動( http://stackoverflow.com/questions/902597/jquery-checking-to-see-if-div-contains-text-then-action) –