久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長(zhǎng)資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      php如何設(shè)置刪除確認(rèn)

      php設(shè)置刪除確認(rèn)的方法:首先打開代碼;然后添加相關(guān)代碼,代碼為【<a href="javascript:if(confirm('確認(rèn)刪除嗎?'))window.location='del.asp'">刪除</a>】。

      php如何設(shè)置刪除確認(rèn)

      php設(shè)置刪除確認(rè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>

      相關(guān)學(xué)習(xí)推薦:php編程(視頻)

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)