php删除记录时的确认消息框?没有经过确认直接删除了
代码如下:js.php<scripttype="text/javascript">functioncheck(){if(confirm('确定要删除吗?')){retur...
代码如下:
js.php<script type="text/javascript">
function check(){
if(confirm('确定要删除吗?')){
return true;
else return false;
}
</script>
del.php
<?php
require_once('js.php');
echo"<form name=form11 id=form11 method=\"post\" action=\"del.php\" onsumbit=\"return check()\">";
echo"<input type=\"submit\" name=\"deletemessage\" value=\"删除\" />";
echo "</form>";
没有确认框弹出,信息直接删除了!!为什么? 展开
js.php<script type="text/javascript">
function check(){
if(confirm('确定要删除吗?')){
return true;
else return false;
}
</script>
del.php
<?php
require_once('js.php');
echo"<form name=form11 id=form11 method=\"post\" action=\"del.php\" onsumbit=\"return check()\">";
echo"<input type=\"submit\" name=\"deletemessage\" value=\"删除\" />";
echo "</form>";
没有确认框弹出,信息直接删除了!!为什么? 展开
4个回答
展开全部
引用二楼的:
if(confirm('确定要删除吗?')){
return true;
}
else{
return false;
}
你那里把else 放在if()里,全都执行了,肯定会不提示直接删除的
if(confirm('确定要删除吗?')){
return true;
}
else{
return false;
}
你那里把else 放在if()里,全都执行了,肯定会不提示直接删除的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
function check(){
if(confirm('确定要删除吗?')){
return true;
else return false;
}
改成
function check(){
if(confirm('确定要删除吗?')){
return true;
}
else return false;
}
if(confirm('确定要删除吗?')){
return true;
else return false;
}
改成
function check(){
if(confirm('确定要删除吗?')){
return true;
}
else return false;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
if(confirm('确定要删除吗?')){
return true;
}
else{
return false;
}
return true;
}
else{
return false;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
if(confirm('确定要删除吗?')){
return true;
else return false;
}
这是什么意思?else在里面?
return true;
else return false;
}
这是什么意思?else在里面?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询