奇怪的javascript导致错误
知道这行 javascript 的含义吗?它在 Firefox 4 上导致错误:
var g=(/(\?|&)its.kit.debug.enabled=true(&|$)/).test(d.location.search)||
(sessionStorage&&sessionStorage["its.kit.debug.enabled"]=="true");
我还没有见过如此奇怪的语法,用 / (\ ? | & ) ???
分配变量
Any idea what this line of javascript means? It causes error on Firefox 4:
var g=(/(\?|&)its.kit.debug.enabled=true(&|$)/).test(d.location.search)||
(sessionStorage&&sessionStorage["its.kit.debug.enabled"]=="true");
I haven't seen such a strange syntax, assigning a variable with / (\ ? | & ) ???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个正则表达式:
That's a regular expression:
它将 d.location.search 中字符串的正则表达式测试分配给变量 g。如果找到“its.kit.debug.enabled=true”,则 g 将为 true。
it's assigning a regex test of the string in d.location.search to the variable g. g would then be true if "its.kit.debug.enabled=true" was found.