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

In - Chấp nhận điều kiện để submit được - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Biểu mẫu » Chấp nhận điều kiện để submit được
URL: https://www.javascriptbank.com/accept-terms.html

Chấp nhận điều kiện để submit được © JavaScriptBank.comHiệu ứng sẽ kiểm tra trạng thái của checkbox trước khi thực hiện yêu cầu trên nhấn nút cho người dùng.

Phiên bản đầy đủ: jsB@nk » Biểu mẫu » Chấp nhận điều kiện để submit được
URL: https://www.javascriptbank.com/accept-terms.html



JavaScript
<SCRIPT LANGUAGE="JavaScript">// Colin Pc , insighteye.com<!-- Beginfunction checkCheckBox(f){if (f.agree.checked == false ){alert('Please check the box to continue.');return false;}elsereturn true;}//  End --></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<form action="/yourscript.cgi-or-your-page.html" method="POST" onsubmit="return checkCheckBox(this)">I accept: <input type="checkbox" value="0" name="agree"><input type="submit" value="Continue Order"><input type="button" value="Exit" onclick="document.location.href='/index.html';"></form><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->