我編寫代碼。當我試圖寫它有「IFRAME」內部單選按鈕的內容一長串象下面這樣的形式:訪問iframe內選定的單選按鈕值
<form name="iframeform" method="POST" action="http://localhost/cgi-bin/run">
<tr>
<td><iframe id="macList" src="http://localhost/macinfo" style="width:1000px;height:160px">
</iframe></td>
</tr>
<tr>
<input type="hidden" name="macaddr" value="">
<td><input type="submit" name="macselect" value="Continue" id="stdbtn" onclick="getIframeContent()"></td>
</tr>
</form>
「IFRAME」所指向的macinfo頁面有類似的代碼如下:
<html>
<body>
<table>
<tr>
<td><input type=radio name=mac value=E8:B7:48:7B:C0:4A>abc.example.com</td>
</tr>
<tr>
<td><input type=radio name=mac value=00:17:08:5A:81:CF>xyz.cisco.com</td>
</tr>
....
</table>
</body>
</html>
如何編寫「getIframeContent()」函數來獲取所選單選按鈕的值?請幫助..
但我認爲你在上面寫的代碼,我需要「的macinfo」 HTML文件中寫入。那麼如何在函數getIframeContent()中獲取'checkItem'變量值,我將在同一個html文件中寫入iframe正在調用'macinfo'文件? – vips 2013-02-22 14:12:24
@ user1552407你可以將它存儲在window.checkedItem中,它可以在多個頁面上工作。 – 2013-02-22 14:21:45