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