入力部品に入力できなくする
テキストフィールドなどをdisabledにし、入力できなくするようにすることが出来ます。
以下は検索ボタン押下後、入力フィールドがdisabledになる例です。



以下、ソースです。

<html>
<head>
<title></title>
<script type="text/javascript">
    function disable(){
        document.getElementById('field').disabled = true;
    }
</script>
</head>
<body>
<input type="text" id="field">
<input type="button" value="検索" onclick="disable();">
</body>
</html>

Back to top

Information