美文网首页
弹窗确认

弹窗确认

作者: hey_leex | 来源:发表于2017-11-20 18:20 被阅读0次

    弹窗确认

    需求:

    点击删除,弹出确认信息,选择确定后删除,取消后不采取任何操作

    //调用funcation,ER表达式作为参数要加单引号,否则报错
    //javascript:void(0)不采取任何操作 #号相当于本页,回跳到最上端
    <a href="javascript:void(0)" onclick="del('${pro.pid }')">
    

    //confirm() 方法用于显示一个带有指定消息和 OK 及取消按钮的对话框。
    //window.location.href
    <script type="text/javascript">
        function del(pid) {
            var is_del = confirm("确定删除");
            if(is_del){
                window.location.href = "${pageContext.request.contextPath}/admainDelProduct?pid="+pid;
            }
        }
    </script>

    相关文章

      网友评论

          本文标题:弹窗确认

          本文链接:https://www.haomeiwen.com/subject/epigpxtx.html