gpt4 book ai didi

javascript - 在 IE 7 中意外调用方法或属性访问

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:51:07 25 4
gpt4 key购买 nike

为了工作,我需要让我们的网站在 IE7 中正常运行。因为,众所周知,企业界无法升级。

我正在使用 IE8 的 IE7 仿真模式来测试站点,而使用 IE8 出色的调试器一直是一场噩梦。

我最近的问题是以下错误:

Unexpected call to method or property access.  jquery.js, line 113 character 460

我在函数的每一行都放置了 console.log 命令,并找出了导致错误的行。

var $loading = $('<span/>').addClass('span-icon icon-ajax-loader').html('Loading...');

此行在 Firefox 和 Chrome 中运行良好。哦,将它输入到 IE8 的 JavaScript 控制台时它工作正常。

为什么这一行会给出 Unexpected call to method or property access?我认为对方法或属性的调用完全符合预期。

更新:根据@Pointy 的建议,我将该行分成了 3 行。

var $loading = $('<span/>');
$loading.addClass('span-icon icon-ajax-loader');
$loading.html('Loading...');

现在我在调用 $loading.html('Loading...'); 时遇到错误。同样,如果我将此代码粘贴到 IE8 的开发人员工具中并运行它,它会正常工作。

最佳答案

你在哪里注入(inject)内容?你看过这个问答吗? Javascript IE error: unexpected call to method or property access

关于javascript - 在 IE 7 中意外调用方法或属性访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5637893/

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