如何使用jquery BBQ检查参数是否存在,如果不存在,则运行函数?
我假设$.deparam.fragment().srhTerm;
是我要使用的,但是如果url中不存在srhTerm
,它会返回false还是null?
感谢
它将返回undefined
。
这就是测试的样子:
if( typeof($.deparam.fragment().srhTerm) == 'undefined' ) {
// do stuff
}