我想知道关于 Javascript 的一些事情。Javascript 功能或行为是否会因浏览器而改变?
当我使用 JavascriptXMLHttpRequest
upload
方法时,我注意到 Internet Explorer 发送小字节,但 Firefox 和 Google chrome 发送大字节。因此,当我使用 Firefox 或 Chrome 发送大数据时,服务器出现OutOfMemory
异常。
我正在编辑带有图像详细信息的帖子。
我想知道关于 Javascript 的一些事情。Javascript 功能或行为是否会因浏览器而改变?
当我使用 JavascriptXMLHttpRequest
upload
方法时,我注意到 Internet Explorer 发送小字节,但 Firefox 和 Google chrome 发送大字节。因此,当我使用 Firefox 或 Chrome 发送大数据时,服务器出现OutOfMemory
异常。
我正在编辑带有图像详细信息的帖子。
是的,有一些差异(实际上是少数)
这里有些例子
因为 float 是保留关键字,您可以通过以下方式访问它:
document.getElementById("id").style.styleFloat = "left";
在火狐中它将是:
document.getElementById("id").style.cssFloat = "left";
document.getElementById("id").getAttribute("className");
在火狐中:
document.getElementById("id").getAttribute("class");
这些是我经历过的事情。但现在几乎每个人都在使用 jquery,所以不必担心这些。但这里有一些关于它们的文章
http://www.impressivewebs.com/7-javascript-differences-between-firefox-ie/
http://www.willowdesign.info/blog/tag/javascript-browser-differences/
http://technologypost.blogspot.com/2008/07/ie-vs-firefox-javascript-differences_05.html