• button点击按钮触发提交from表单数据


    1.html代码

    <form method="post" action="/xxx/" id="filter_all" >
        {% csrf_token %}
        <select name="filter_platform" id="filter_platform" style="height: 30px;border: 0; 250px;border-radius: 7px;background-color: #e2e2f5;">
            <option value="" style="display: none;" disabled selected>平台:{{ filter_platform }}</option>
            {% for server_host_type in server_host_type_list %}
                <option value="{{ server_host_type }}">{{ server_host_type }}</option>
            {% endfor %}
        </select>
        <select name="filter_accoount" id="filter_accoount" style="height: 30px;border: 0; 250px;border-radius: 7px;background-color: #e2e2f5;">
            <option value="" style="display: none;" disabled selected>账号:{{ filter_accoount }}</option>
            {% for account in accoount_list %}
                <option value="{{ account.platform }}_{{ account.account }}({{ account.name }})">{{ account.platform }}_{{ account.account }}({{ account.name }})</option>
            {% endfor %}
        </select>
        <select name="filter_project" id="filter_project" style="height: 30px;border: 0; 250px;border-radius: 7px;background-color: #e2e2f5;">
            <option value="" style="display: none;" disabled selected>项目:{{ filter_project }}</option>
            {% for project in project_list %}
                <option value="{{ project.id }}">{{ project.name }}</option>
            {% endfor %}
        </select>
        <button class="layui-btn layui-btn-small" style="height: 30px;line-height:1.6em;" title="筛选" onclick="submitForm_filter_platform()">
            <i class="layui-icon" style="line-height:32px;font-size: 14px;">筛选</i>
        </button>
    </form>

    2.javascript代码

    function submitForm_filter_platform(){
        //获取form表单对象,提交选择项目
        var form = document.getElementById("filter_all");
        form.submit();//form表单提交
    }
  • 相关阅读:
    第3章 管道符、重定向与环境变量
    基于Linux命令行KVM虚拟机的安装配置与基本使用
    Linux系统真正的优势以及学习方法
    一款在线编写接口文档的工具
    springboot前端传参date类型后台处理方式
    软件工程专业需要知道的缩写和专业名词
    七牛云图床及MPIC工具使用
    阿里云ECS云服务器CentOS部署个人网站
    【字】biang
    【车】打开车窗技巧
  • 原文地址:https://www.cnblogs.com/chenjw-note/p/12703596.html
Copyright © 2020-2023  润新知