月關(guān)寶盒
2023-05-19 15:06:31
我有這個(gè)工作腳本:<script>jQuery( document ).ready(function() { console.log( "ready!" );var hideUrl=['https://www.gustotosto.it/shop/boni/','https://www.gustotosto.it/shop/agropic/',];if(hideUrl.indexOf(window.location.href)>=0){ jQuery('.title-shop').hide();}});</script>現(xiàn)在我想修改它,因?yàn)樗皇请[藏了 var 中列出的 url 的“.title-shop”;如果 url 包含 var hideUrl,我想擴(kuò)展它并隱藏“.title-shop”,包括子頁(yè)面。我這樣修改了它,但它不起作用。怎么了?有人可以幫助我嗎?<script>jQuery( document ).ready(function() { console.log( "ready!" );var hideUrl=['https://www.gustotosto.it/shop/boni/','https://www.gustotosto.it/shop/agropic/',];if (window.location.href.indexOf("hideUrl") > -1){ jQuery('.title-shop').hide();}});</script>
1 回答

POPMUISE
TA貢獻(xiàn)1765條經(jīng)驗(yàn) 獲得超5個(gè)贊
您的代碼中有兩個(gè)問(wèn)題。首先hideUrl是一個(gè)變量名,所以你不應(yīng)該用引號(hào)引起來(lái)。這樣做意味著它被視為字符串文字。
其次,您需要遍歷hideUrl數(shù)組中的所有項(xiàng)目并單獨(dú)比較它們。嘗試這個(gè):
jQuery($ => {
var hideUrls = [
'https://www.gustotosto.it/shop/boni/',
'https://www.gustotosto.it/shop/agropic/'
];
hideUrls.forEach(url => {
if (window.location.href.indexOf(url) > -1) {
$('.title-shop').hide();
}
});
});
添加回答
舉報(bào)
0/150
提交
取消