我有一个包含jQuery的iframe内容,并且iframe中的内容的jQuery部分在IE中不起作用(未使用的部分jQuery工作正常,并且在Chrome和Firefox中一切正常).
这是代码:
<!DOCTYPE html> <html> <head> <title>iframe content</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <h1>This heading is showing up just fine.</h1> <div id="jQuery-generated-content"> <!-- content dynamically generated by jQuery plugin This part is not showing in iframe in IE --> </div> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"> </script> <script src="pathTojQueryPlugin.js"></script> <script type="text/javascript"> jQuery.codeToInitiatePlugin </script> </body> </html>
我尝试在head标签中插入jQuery代码,在body标签之后,包含相对路径和绝对路径,但没有运气.如果有人知道这方面的任何变通办法或者是什么导致IE不读取jQuery,我将不胜感激.
提前致谢!