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

In - Xác nhận một hàm - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Thủ thuật » Xác nhận một hàm
URL: https://www.javascriptbank.com/alert-function.html

Xác nhận một hàm © JavaScriptBank.comHiệu ứng dùng để xác nhận việc thực thi một hàm nào đó.

Phiên bản đầy đủ: jsB@nk » Thủ thuật » Xác nhận một hàm
URL: https://www.javascriptbank.com/alert-function.html



JavaScript
<script type="text/javascript"><!-- Begin/*Created by: Steeveeo :: http://www.freewebs.com/steeveeo3000/ */function confirmFunction() {  alert("This message will confirm whether or not to perform a function");  if (confirm("Are you sure you want to activate the function?"))    {      functionAlert();    }  else  alert("Function cancelled.");    {    }}// End --></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<script type="text/javascript"><!-- Beginfunction functionAlert() {  alert("Your function here");    {  }}// End --></script><form><input type="button" value="Confirm The Function" onClick="confirmFunction()"></form><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->