我想用jquery做些事情。jquery從iframe內容訪問iframe ID
我有這樣的代碼1.html;
<html>
<head>
<script language="javascript" type="text/javascript" src="jquery.js"></script>
</head>
<body>
<iframe src="2.html" id="frame1"></iframe>
<iframe src="3.html" id="frame2"></iframe>
</body>
</html>
在2.html文件中。我試圖訪問iframe容器ID。 2.html文件內容;
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#btnIdKim').click(function(){
});
});
</script>
</head>
<body>
<input type="button" name="btnIdKim" id="btnIdKim" value="Id Kim" />
</body>
</html>
當用戶點擊btnIdKim按鈕。我需要訪問包含按鈕的父級iframe id。
但我不知道如何。
感謝每一個誰感興趣
你是如何得到解決的*不安全的JavaScript嘗試訪問帶有URL的幀...域,協議和端口必須匹配*? – Josh 2011-01-19 21:03:27