gpt4 book ai didi

javascript - 使用 Internet Explorer 时出现 js 错误 "expected identifier"

转载 作者:行者123 更新时间:2023-12-02 14:36:29 26 4
gpt4 key购买 nike

我有导出 PDF 的代码,它在所有浏览器中都能正常工作,但是当我在 IE 中使用它时,它会给我一个 JS 错误,例如该行 $.fn 的 expectedidentifier 。 yiiGridView.export();.

谁能告诉我如何解决这个问题。

$('#export-button').on('click', function() {       
$.fn.yiiGridView.export();
});

最佳答案

导出reserved word in ES6 ,因此请使用括号表示法:

$('#export-button').on('click', function() {       
$.fn.yiiGridView['export']();
});

如果您自己创建了该函数,那么最好使用不同的名称,例如 myexport:

$.fn.yiiGridView.myexport = function () { .... };

然后:

$('#export-button').on('click', function() {       
$.fn.yiiGridView.myexport();
});

关于javascript - 使用 Internet Explorer 时出现 js 错误 "expected identifier",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37413543/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com