日期:2014-05-16  浏览次数:20313 次

收集记录一些使用Javascript,JQuery时遇到的问题

收集记录一些使用Javascript,JQuery时遇到的问题

?

1.IE不支持file input的clone,不过,可以另辟蹊径,转换成移动file input到新的位置,原位置用一个新的file input替换。

http://stackoverflow.com/questions/415483/clone-a-file-input-element-in-javascript
http://stackoverflow.com/questions/873987/need-file-input-element-cloned-from-1-form-into-another-via-php-javascript
http://www.codingforums.com/archive/index.php/t-127010.html

http://the-stickman.com/web-development/javascript/upload-multiple-files-with-a-single-file-element/

?

但是,对于把一个file input从主页面移动到iframe中,IE8是支持,貌似IE6,IE7不支持

http://forums.devshed.com/javascript-development-115/moving-file-input-to-different-form-doesn-t-work-in-681577.html

?

2.在Firefox/Opera/Safari/Chrome中,如果使用DOM移动了iframe,会导致iframe重新加载;但是在IE中,不会。

http://www.webdeveloper.com/forum/showthread.php?t=178111

http://stackoverflow.com/questions/2233097/how-can-i-stop-an-iframe-reloading-when-i-change-its-position-in-the-dom

附件:[移动iframe后,重新加载的问题.rar]中 有demo

?

3.JQuery插件jquery.bgiframe.min.js,IE版本判断的bug

http://taotie119.iteye.com/blog/1388983

?