在 Internet Explorer 中是否有任何理由将 JavaScript 替换为 JScript?
那么,当 JScript 与 JavaScript 不同时,IE 如何解释 jQuery 以及所有其他 JavaScript?
将 IE 的 JavaScript 替换为 JScript 是否更好?是否存在性能差异?
So when JScript is different from JavaScript, how does IE interpret jQuery, and all the other JavaScript-s ?
Is it better to replace the JavaScript with JScript for IE? Are there any performance diferences?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
JScript 和 JavaScript 是相同的。它们只是彼此的别名:(
来自 Wikipedia)
两者之间唯一的脚本差异在于跨浏览器差异。
JScript and JavaScript are the same. They're just aliases for each other:
(via Wikipedia)
The only scripting differences between the 2 will be in cross-browser differences.
您只能为 IE 浏览器插入额外的脚本 -
它将提高其他浏览器的性能。
You can insert an extra script for IE browsers only-
It will boost the performance of the other browsers.
正如其他人所说,JavaScript 和 JScript 是一回事。 IE 将 JQuery 解释为任何其他 JavaScript 代码。事实上,JQuery 实现了大多数浏览器不一致的解决方法,包括 IE 中的不一致。
关于性能 - 与所有其他现代浏览器相比,IE JScript/JavaScript 的性能很糟糕。太糟糕了,比这还要糟糕十倍以上。
不幸的是,除了尝试说服访问者使用其他浏览器之外,您无法采取任何措施来加快速度。
As the other people said JavaScript and JScript are one and the same. IE interprets JQuery as any other JavaScript code. If fact JQuery implements workarounds for most browser inconsistencies, including those in IE.
About the performance - IE JScript/JavaScript performance is awful compared to all other modern browsers. Awful as in more then 10 times worse.
Unfortunately, there is nothing you can do to speed it up, besides trying to persuade your visitors to use another browser.