zoukankan      html  css  js  c++  java
  • js模拟form打开新窗口

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
        <script type="text/javascript">
            function openUrl(iid) {
                var temp_form = document.getElementById("item_form");
                if (temp_form == null) {
                    temp_form = document.createElement("form");
                    temp_form.action = "/xxx.aspx";
                    temp_form.target = "_blank";
                    temp_form.method = "get";
                    temp_form.setAttribute("id", "item_form");
    
                    var temp_input = document.createElement("input");
                    temp_input.setAttribute("type", "hidden");
                    temp_input.setAttribute("id", "item_id");
                    temp_input.name = "id";
                    temp_input.value = iid;
                    temp_form.appendChild(temp_input);
                    document.body.appendChild(temp_form);
                } else {
                    document.getElementById("item_id").value = iid;
                }
                temp_form.submit();
            } 
        </script>
    </head>
    <body>
        <form id="form1" runat="server">
        <div>
        <a href="javascript:openUrl(1)">a1</a>
        <br />
        <a href="javascript:openUrl(2)">a2</a>
        <br />
        <a href="javascript:openUrl(3)">a3</a>
        </div>
        </form>
    </body>
    </html>
  • 相关阅读:
    文件处理
    字符编码复习
    python小知识点复习
    计算机基础
    前端html/css/script基础
    前端(css引入的3中方式)
    (数据库之pymysql)
    Spring、Spring MVC、Struts2优缺点整理
    Java Web 高性能开发,前端的高性能
    HDFS的工作原理扫扫盲
  • 原文地址:https://www.cnblogs.com/webapi/p/9782337.html
Copyright © 2011-2022 走看看