如果此文本存在“购物车为空”,我想将用户自动重定向到另一个页面。我找到了这个 jQuery :contains() 选择器并对其进行了测试,但它没有用。这是我的代码:
<div class="page-title">
<h1>Shopping Cart is Empty</h1>
</div>
<script>
$( "div.page-title:contains('Shopping Cart is Empty')".window.location.replace("http://www.another-page.com");
</script>