2

私はこのようなものに到達したい:

if(window.location.href.indexOf("http://stackoverflow.com/questions/")){
 ... then to this
}

ただし、URLが次のようになっている場合でも実行されますhttp://stackoverflow.com/questions/ask/

4

1 に答える 1

17
if(window.location.href === "http://stackoverflow.com/questions/"){
    ... then to this
}
于 2012-05-11T19:48:22.513 に答える