我在 IE 7 中遇到了 JavaScript 范围的真正问题。
我已经在页面顶部声明了如下功能
function close_fancy()
{
$.fancybox.close();
}
调用函数
<input type="reset" name="reset" id="button2" value="Close'" onclick="close_fancy();"/>
它可以在除 IE-7 之外的所有主要浏览器上运行,它会引发以下错误
The value of the property 'close_fancy' is null or undefined, not a Function object
请帮我解决这个...