私はこのようなものを作ろうとしています:
ドロップダウン リストで選択したオプションに基づいて、iframe を動的に変更できるようにしたいと考えています。
私がこれまでに持っているコードは次のとおりです。
<html>
<head>
<script>
function hidem() {
document.getElementById('Select').style.display = "none";
document.getElementById('test1').style.display = "none";
document.getElementById('test2').style.display = "none";
}
function changeIt(divid) {
hidem();
document.getElementById(divid).style.display = "block";
}
</script>
</head>
<table border="0">
<tr>
<td>
<select id="Manage" onChange="changeIt(this.value)">
<option value="Select">Select A Management Window</option>
<option value="test1">Google</option>
<option value="test2">Yahoo</option>
</select>
</td>
<td>
<div id="Select">
<h2>Information:</h2>
This is a management console
</div>
<div id="test1" style="display:none">
<h2>Google:</h2>
<iframe src="http://www.google.com" width="100%" height="100%"></iframe>
</div>
<div id="test2" style="display:none">
<h2>Yahoo:</h2>
<iframe src="http://www.yahoo.com" width="100%" height="100%"></iframe>
</div>
</td>
</tr>
</html>
しかし、私が意図したようには機能していないようです。これで私を助けることができる人はいますか?
ありがとうございました、
デイブ