当前位置:Gxlcms > PHP教程 > php怎么点击按钮弹出确认框

php怎么点击按钮弹出确认框

时间:2021-07-01 10:21:17 帮助过:27人阅读

双选确认框,点击是跳转到yes.html,点击否跳转到no.html (推荐学习:PHP视频教程)

<?php

echo "<script> if(confirm( '请选择跳转页面,是跳转到yes.html  否跳转到no.html? '))  location.href='yes.html';else location.href='no.html'; </script>"; 

?>

双选确认框,选择后继续弹出确认对话框

<?php

echo "<script> var sure=confirm( '确认你的操作吗 '); if (1==sure){alert( '你选择了是 ')} else {alert( '你选择了否 ');}</script>";

?>

弹出确认框,点击确定跳转到目标页面

<?php 
echo "<script> {window.alert('发布成功');location.href='aa.html'} </script>";
?>

以上就是php怎么点击按钮弹出确认框的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行