zoukankan      html  css  js  c++  java
  • html 页面弹窗

    第一种: alert

      alert("hello!")

    第二种:window.confirm()

      A : <a href="javascript:if(confirm('确实要删除该内容吗?'))location='http://www.google.com'">弹出窗口</a>

          <input name="按钮" type="button" id="ok" onclick="{if(confirm('确定删除吗?'))

       B : if(window.confirm('你确定要取消交易吗?')){
                     //alert("确定");
                     return true;
                  }else{
                     //alert("取消");
                     return false;
               }

    第三种:prompt

    prompt 方法也将显示一个模式消息框。用户在继续操作之前必须先关闭该消息框

    var theResponse = window.prompt("欢迎?","请在此输入您的姓名。");

    页面代码 测试

    <script language="javascript" type="text/javascript">
    function prom(href)
    {
    var name=prompt("input the name","");


    if(name=="admin")
    {
    var pwsd=prompt("input the password","");
    if(pwsd=="admin")
    {
    alert("login ok...");
    location.href=href;
    }
    else{alert("error password");}
    }
    else{alert("error name");}
    }
    </script>

    <html type="button" onClick="prom();" name="prom" value="prom">

  • 相关阅读:
    替换URL传递的参数
    执行SQl语句得到xml结果集
    table中文本太长换行
    org.xml.sax.SAXNotRecognizedException
    WAMP+CMSeasy快速搭建学校网站
    推荐几个web前台开发的小工具
    来园子里注册啦
    C++ Virtual的背后
    Games101观后补充笔记
    Lua语法入门
  • 原文地址:https://www.cnblogs.com/wushuishui/p/4346824.html
Copyright © 2011-2022 走看看