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" がクラスとして追加されますが、追加されません。問題が何であるかを知っている人はいますか?両方のファイルが同じ (ローカル) フォルダーにあります。