我有基于http://www.mywebsite.com/post/
根目录中所有页面执行的代码我会使用什么方法来定位网址的帖子部分,无论代码执行后会发生什么?
我的代码是:
var url = document.location.href;
if (url = 'http://www.mywebsite.com/post/') {
//do something
}
我想通了,成功了!
以下是解决方案:
var url = document.location.href;
if (url.indexOf("post") > 0) {
//do something
}
最终,我想像通配符一样使用此网址“http://www.mywebsite.com/post/”。我怎么做?