我有一个数组:
var checkURL = ['abc123', 'abc124', 'abc125'];
如何检查数组中的字符串之一是否存在于 window.location.pathname 中?
我知道我可以单独使用:
<script type="text/javascript">
$(document).ready(function () {
if(window.location.href.indexOf("abc123") > -1) {
alert("your url contains the string abc123");
}
});
</script>