标签:ie9 参数是必选项 尚未实现 argument not optiona
<script type="text/javascript"> function addFilter(aaa) { alert(aaa); } </script> <input type="button" onclick="addFilter();" value='button'/>
以上代码在ie9中运行时,会报错误:参数是必选项(Argument not optional)
<script type="text/javascript"> function addFilter(aaa) { alert(aaa); } </script> <input type="button" onclick="addFilter('111');" value='button'/>上边第二段代码在ie9中运行时,会报错误:尚未实现。
经过多方查找原因后,发现在运行时,dom对象上有个内部函数addFilter,影响我们代码的执行。
因此在遇到此问题时,可以通过修改自定义的函数名称来解决。
ie9 中出现不明的异常(参数是必选项 (Argument not optional)、尚未实现)等
标签:ie9 参数是必选项 尚未实现 argument not optiona
原文地址:http://blog.csdn.net/lianggeblog/article/details/43194427