おたふく
2000/05/27(土) 07:16:47
こんにちは
こんな感じであればできますが、
レイヤーを使っているので、NN、IEともVer4以降?でないとだめです。
僕もはじめたばかりで詳しいことはわかりませんので、
http://www.fureai.or.jp/~tato/DHTML/simple/contents.htm
http://www5.airnet.ne.jp/martin/CrossBrowser/
このへん見てみてください。
<HTML>
<head>
<title>sample</title>
<script language="javascript">
<!--
function changeHtml(layerName,htmlContents){
if(document.all)document.all(layerName).innerHTML=htmlContents;
if(document.layers){
with(document.layers[layerName].document){
open("text/html");
write(htmlContents);
close();
}
}
}
Ans=new Array('やきとり','どんぶり','ジンギスカン')
function setumei() {
nn = document.forms[0].elements[0].selectedIndex;
for(i=0;i<3;i++){
if(nn==i)changeHtml('answer',Ans[i])
}
}
//-->
</script>
</head>
<body onLoad="setumei()">
<form>
<select onChange="setumei()">
<option selected>とり</option>
<option>うし</option>
<option>ひつじ</option>
</select>
といえば
</form>
<DIV ID=answer STYLE="position:absolute;left:10;top:40"></DIV>
</body>
</HTML>