http://www.example.com
比如说,如果 document.location 等于或,我希望条件为真http://www.example.com/example/anythinghere/
,但如果位置不完全适合,则为 FALSE,例如http://www.example.com/example/anythinghere/sdjfdfasdfaf
将返回 FALSE。
当然,我会写如下内容:
if(document.location == "http://www.example.com/" ||
document.location == "http://www.example.com/example/*/")
但是,我知道好的 ol' 星号通配符不起作用,而且,作为一个使用正则表达式的业余爱好者,我无法找到合适的设置来寻找与模式完全匹配的设置。你对有条件的后半部分有什么建议?