检查窗口路径名(url)是否具有特定值

时间:2013-03-18 12:23:53

标签: jquery

美好的一天。

我想检查当前浏览器窗口路径名是否具有特定值...

但我的代码无效......有什么帮助吗?

               jQuery(function($){
                    var pathname = window.location.pathname;

                    if ($pathname == 'http://google.com') {
                        alert($pathname);
                    }
                });

谢谢

1 个答案:

答案 0 :(得分:5)

if ($pathname == 'http://google.com') {

应该是

if (pathname == 'http://google.com') { //no $

因为您将其声明为

var pathname = window.location.pathname;