の間では window. を省略可能
// "\r\n"は改行
window.alert("使用PCは " + "\r\n" + a + "\r\n"+ " ですね!");
}
// -->
の間では window. を省略可能
var a = window.prompt("あなたの年齢は?", "105") // cancel=null
var b = window.confirm(a +" 歳でよろしいですか?") // yes=true no=false
}
// -->
id="~~"から取得表示
<form>~</form>は必要ありません。
取得値
表示値
<script language="javascript" type="text/javascript"> <!-- function kaisi2() { // HtmlDocument クラス - GetElementById メソッド var a = document.getElementById("dtA").value; document.getElementById("dtB").value=a; } // --> </script>
ファイル情報から取得し新しいページに表示
<input>~は必要ありません。
<script type="text/javascript"> <!-- function kaisi3() { var a = document.fileModifiedDate document.write("本ページの更新日は " + a + " です。"); } // --> </script>
閲覧者のPC情報から取得しメッセージボックス(ダイアログ・アラート)に表示
<input>~は必要ありません。
<script type="text/javascript"> <!-- function kaisi4() { var a = window.navigator.platform // <script>~</script> の間では window. を省略可能 // "\r\n"は改行 window.alert("使用PCは " + "\r\n" + a + "\r\n"+ " ですね!"); } // --> </script>
閲覧者から取得し確認メッセージボックス(ダイアログ・アラート)に表示
<input>~は必要ありません。
<script type="text/javascript"> <!-- function kaisi5() { // <script>~</script> の間では window. を省略可能 var a = window.prompt("あなたの年齢は?", "105") // cancel=null var b = window.confirm(a +" 歳でよろしいですか?") // yes=true no=false } // --> </script>
他
window.showModalDialog(url [, a [, option]])
window.showModelessDialog(url [, a [, option]])
window.dialogArguments
window.dialogHeight
window.dialogWidth
window.dialogLeft
window.dialogTop
window.returnValue
<input>から取得し<table>に表示
<form>~</form>は必要ありません。
取得値A
取得値B
表示
id="table_51_01"
ここに
id="table_51_02"
ここに
onclick="kaisi6(引数51を設置)"
<script language="javascript" type="text/javascript"> <!-- function kaisi6(objname) { var a =document.getElementById("tbA").value var b =document.getElementById("tbB").value document.getElementById("table_" + objname + "_01").innerText = a document.getElementById("table_" + objname + "_02").innerText = b } --> </script>
<script language="javascript" type="text/javascript"> { var x =2 var a =document.getElementById("table_" + idno+ "_" + x +"1").innerText var b =document.getElementById("table_" + idno+ "_" + x +"2").innerText var c =document.getElementById("table_" + idno+ "_" + x +"3").innerText var d =document.getElementById("table_" + idno+ "_" + x +"4").innerText var x =4 document.getElementById("table_" + idno+ "_" + x +"1").innerText = a document.getElementById("table_" + idno+ "_" + x +"2").innerText = b document.getElementById("table_" + idno+ "_" + x +"3").innerText = c document.getElementById("table_" + idno+ "_" + x +"4").innerText = d } </script>