我有这个工作脚本:
<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>
现在我想修改它,因为它只是隐藏了 var 中列出的 url 的“.title-shop”;如果 url 包含 var hideUrl,我想扩展它并隐藏“.title-shop”,包括子页面。我这样修改了它,但它不起作用。怎么了?有人可以帮助我吗?
<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>
POPMUISE
相关分类