条件编译已关闭

时间:2010-06-02 07:49:36

标签: javascript

我收到了一个javascript错误:

关闭条件编辑

我发现此链接需要修复:http://msdn.microsoft.com/en-us/library/5y5529x3(VS.90).aspx 但在添加此字段后

/ @cc_on @ /

我得到了新的,另一个javascript错误:

预期')'

如何解决?感谢

1 个答案:

答案 0 :(得分:1)

这是一段受Dean Edwards影响的优秀代码,用于确定是否启用了条件注释:

var allowsCC = /*@cc_on!@*/!1;
if(allowsCC)
  alert("Conditional comments are allowed!!!");
else
  alert("Conditional comments are not allowed.");

正如您可能已经确定的那样,allowCC将被设置为一个布尔值,指示是否允许条件注释。