»
Tiếng AnhTiếng PhápTiếng Việt

In - Tác động form - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Biểu mẫu » Tác động form
URL: https://www.javascriptbank.com/agree-before-entry.html

Tác động form © JavaScriptBank.comHiệu ứng chỉ cho phép người dùng nhập liệu vào textbox khi đã đánh dấu chọn vào nút radio được chỉ định.

Phiên bản đầy đủ: jsB@nk » Biểu mẫu » Tác động form
URL: https://www.javascriptbank.com/agree-before-entry.html



JavaScript
<SCRIPT LANGUAGE="JavaScript"><!-- Beginagree = 0;  // 0 means 'no', 1 means 'yes'//  End --></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<form name=enableform><input type=radio name='enable' value='agree' onClick="agree=1; document.enableform.box.focus();">I agree<br><input type=radio name='enable' value='disagree' onClick="agree=0; document.enableform.box.value='';">I disagree<br>Please enter your name:  <input type=text name=box onFocus="if (!agree)this.blur();" onChange="if (!agree)this.value='';" size=12><br><br><input type=submit value="Done!"></form><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->