if(/\/?p(\d+)$/.test(window.location.pathname)) {
} else {
if(hrefArray.length > 1) {
postLast.html('<center><img class="loadingImg" src="'+imgUrl+'"/></center>');
infiniteScroll();
}
}
我知道代码中有一些元素是数组,但我的问题是
if() {
} else {
//run code here
}
我想知道如果 url 不包含 p19 我将如何测试它/\/?p(\d+)$/
?
var regex=(/\/?p(\d+)$/);
if(!regex.test(window.location.pathname) {}
我对此很好奇,我知道如何测试元素是否已定义等等,只是不确定是否使用正则表达式。