在iFrame中使用jQuery无法正常工作

时间:2013-08-30 15:50:04

标签: javascript jquery html iframe

我在iFrame中使用jQuery时遇到问题。

这是我的测试设置:

的index.html:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script type="text/javascript">

$(document).ready(function(){
    $("#A").contents().find('#B').addClass('Z');    
});

</script>
</head>
<body>

<iframe id="A" src="test.html" style="width:700px; height: 1000px;" frameborder="0"></iframe>

</body>
</html>

的test.html:

<html>
<head>
<title>test</title>
</head>
<body>
<div id="B">testcontent</div>
</body>
</html>

通常在加载页面时,在源代码中,“Z”应该作为一个类添加,但它不会。有谁知道问题可能是什么?两个文件都在同一个(本地)文件夹中。

2 个答案:

答案 0 :(得分:7)

试试这个

$("iframe").load(function(e){
    $(this).contents().find('#B').addClass('Z');
});

答案 1 :(得分:3)

您必须使用HTTP方案(http://https://)从网络服务器运行它。

使用文件方案(file://)可以防止某些浏览器中出现这种跨框架访问。