現在、仕事を終わらせるためにjavascriptを使用していますが、onkeyupを使用しています。ボタンを使用して「変数を最初に」入力しているため、これは機能しません。ユーザーがボタンを押すと、最初に変数が入力されるため、実際のキーアップ/キーダウンはありません。
<script>
window.onload = function () {
var first = document.getElementById('USERDEFINE1'),
//second = document.getElementById('ADDRESS2');
third = document.getElementById('PHONENIGHT');
fourth = document.getElementById('INTERNET');
fifth = document.getElementById('last_purchase');
sixth = document.getElementById('last_purchase_date');
first.onkeyup = function () { // or first.onchange
//second.value = '4444';
third.value = '111-111-1111';
fourth.value = 'NONE';
fifth.value = 'N/A';
sixth.value = 'N/A';
};
};
</script>
次のようなものを使用できますか:
if (document.getElementById(first.value) > 0
もしそうなら、現在のJavaScriptにどのように実装すればよいですか、それともすべて一緒に書き直す必要がありますか? 前もって感謝します。