最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識(shí)百科 - 正文

如何編寫js彈出確認(rèn)刪除的提示信息

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 20:28:15
文檔

如何編寫js彈出確認(rèn)刪除的提示信息

如何編寫js彈出確認(rèn)刪除的提示信息:第一種方法:挺好用的,確認(rèn)以后才能打開下載地址頁面。原理也比較清晰。主要用于刪除單條信息確認(rèn)。<SCRIPT LANGUAGE=javascript>function p_del() {var msg = "您真的確定要?jiǎng)h除嗎?/n/n請(qǐng)確認(rèn)!";if (confirm(ms
推薦度:
導(dǎo)讀如何編寫js彈出確認(rèn)刪除的提示信息:第一種方法:挺好用的,確認(rèn)以后才能打開下載地址頁面。原理也比較清晰。主要用于刪除單條信息確認(rèn)。<SCRIPT LANGUAGE=javascript>function p_del() {var msg = "您真的確定要?jiǎng)h除嗎?/n/n請(qǐng)確認(rèn)!";if (confirm(ms

第一種方法:挺好用的,確認(rèn)以后才能打開下載地址頁面。原理也比較清晰。主要用于刪除單條信息確認(rèn)。

<SCRIPT LANGUAGE=javascript>

function p_del() {

var msg = "您真的確定要?jiǎng)h除嗎?/n/n請(qǐng)確認(rèn)!";

if (confirm(msg)==true){

return true;

}else{

return false;

}

}

</SCRIPT>

調(diào)用方法:

<a href="del.jsp?id=<%=id%>" onclick="javascript:return p_del()">刪 除</a>

第二種方法:原理跟上面的一樣。

JavaScript刪除確認(rèn)框

<a href="javascript:if(confirm('確實(shí)要?jiǎng)h除嗎?'))location='jb51.php?id='">刪除</a>

第三種:主要用于批量刪除的確認(rèn)提示

<input name="Submit" type="submit" class="inputedit" value="刪除" onclick="{if(confirm('確定紀(jì)錄嗎?')){this.document.formname.submit();return true;}return false;}">

<input name="按鈕" type="button" ID="ok" onclick="{if(confirm('確定刪除嗎?')){window.location='Action.asp?Action=Del&TableName=Item&ID=<%=ID%>';return true;}return false;}" value="刪除欄目" />

下面是別的網(wǎng)友整理的,大同小異。一般通過彈出確認(rèn)按鈕來判斷是否繼續(xù)進(jìn)入下面的刪除頁面。

第一種:

<a href="javascript:if(confirm('確認(rèn)刪除嗎?'))window.location='del.asp'">刪除</a>

第二種:

<script language="javascript">

<!--

function del_sure(){

var gnl=confirm("你真的確定要?jiǎng)h除嗎?");

if (gnl==true){

return true;

}

else{

return false;

}

}

--->

</script>

//調(diào)用

<a href="del.asp?id=<%=rs("id")%>" onclick="javascript:del_sure()">刪除</a>

第三種:

<script language="javascript">

function confirmDel(str){

return confirm(str);

}

</script>

<a href="delete.asp" onclick="return confirmDel('確定要?jiǎng)h除嗎')">刪除</a>

更多如何編寫js彈出確認(rèn)刪除的提示信息相關(guān)文章請(qǐng)關(guān)注PHP中文網(wǎng)!

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

如何編寫js彈出確認(rèn)刪除的提示信息

如何編寫js彈出確認(rèn)刪除的提示信息:第一種方法:挺好用的,確認(rèn)以后才能打開下載地址頁面。原理也比較清晰。主要用于刪除單條信息確認(rèn)。<SCRIPT LANGUAGE=javascript>function p_del() {var msg = "您真的確定要?jiǎng)h除嗎?/n/n請(qǐng)確認(rèn)!";if (confirm(ms
推薦度:
標(biāo)簽: 刪除 確定 彈出
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top