我想弄清楚javascript(我也可以使用jquery),它会显示一个div ID(#main,我将它设置在css中显示:none;)如果URL完全类似于:
http://test.testdomain.com/news
但不是这样的
http://test.testdomain.com/news/34
http://test.testdomain.com/news/96
http://test.testdomain.com/news/341254
有什么想法吗?
答案 0 :(得分:0)
我相信这是你需要的条件:
if (window.location.href.toLowerCase() == 'http://test.testdomain.com/news') {
$('#main').show();
}