1

我将如何使用 jquery BBQ 来检查参数是否存在,如果不存在则运行函数?

我假设这$.deparam.fragment().srhTerm;是我将使用的,但是如果srhTermurl 中不存在,它返回 false 还是 null?

谢谢

4

1 回答 1

1

它会返回undefined

这就是测试的样子:

if( typeof($.deparam.fragment().srhTerm) == 'undefined' ) {
    // do stuff
}
于 2012-01-31T16:24:22.800 回答