zoukankan      html  css  js  c++  java
  • web页面中 将几个字段post提交

    思路 自己在html中构建form 先根据传入的action构建form的action  然后根据要提交的字段构建form中的元素  最后通过调用form中的按钮提交from表单

    方法:
    var jsPost = function (action, values) {
            var id = Math.random();
            document.write('<form id="post' + id + '" name="post' + id + '" action="' + action + '" method="post">');
            for (var key in values) {
                document.write('<input type="hidden" name="' + key + '" value="' + values[key] + '" />');
            }
            document.write('</form>');
            document.getElementById('post' + id).submit();
        }

    调用

    jsPost('/mmsadd/Index', { 'ContactIDList': idlist });

    jsPost('/mmsadd/Index', { 'ContactIDList': idlist,'ContactID': id });

  • 相关阅读:
    3.30 DOM操作
    3.29 js例题
    3.28 函数
    3.27 数组例题
    Web 条件查询、分页查
    web页面增、删、改
    JDBC事务、下拉框
    JSTL、断点、JavaEE、DBUTils连接池
    jsp、el表达式
    Session技术 、jsp页面
  • 原文地址:https://www.cnblogs.com/hucaihao/p/3514808.html
Copyright © 2011-2022 走看看