欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

JS中confirm,alert,prompt函數(shù)使用區(qū)別分析

 更新時間:2010年04月01日 17:53:24   作者:  
JS中confirm,alert,prompt函數(shù)使用區(qū)別分析,需要的朋友可以參考下。
window.alert:參數(shù),只有一個,顯示警告框的信息;
無返回值.
<script>
window.alert("確定.")
</script>
window.confirm : 參數(shù)就只有一個.顯示提示框的信息.
按確定,返回true; 按取消返回false.
<script>
var bln = window.confirm("確定嗎?");
alert(bln)
</script>
window.prompt:參數(shù),有兩個,
第一個參數(shù),顯示提示輸入框的信息.
第二個參數(shù),用于顯示輸入框的默認值.
返回,用戶輸入的值.
<script>
var str = window.prompt("請輸入密碼","password")
alert(str);
</script>

相關(guān)文章

最新評論