| 目次 |
|---|
|
・ステータスバーにメッセージ表示 ・ソース ・IE7で表示するには |
<html>
<head>
<title></title>
</head>
<body>
<script type="text/javascript">
function a(){
window.status = txt.value;
}
</script>
<input type="text" name="txt">
<input type="button" value="button" name="submit" onClick="a()">
</body>
</html>