• 用javascript动态创建并提交表单form,表格table


    <script>

    //helper function to create the form
    function getNewSubmitForm(){
    var submitForm = document.createElement("FORM");
    document.body.appendChild(submitForm);
    submitForm.method = "POST";
    return submitForm;
    }

    //helper function to add elements to the form
    function createNewFormElement(inputForm, elementName, elementValue){
    var newElement = document.createElement("<input name='"+elementName+"' type='hidden'>");
    inputForm.appendChild(newElement);
    newElement.value = elementValue;
    return newElement;
    }

    //function that creates the form, adds some elements
    //and then submits it
    function createFormAndSubmit(){
    var submitForm = getNewSubmitForm();
    createNewFormElement(submitForm, "field1", "somevalue");
    createNewFormElement(submitForm, "field2", "somevalue");
    submitForm.action= "someURL";
    submitForm.submit();
    }
    </script>

    <input type="button" value="Click to create form and submit" onclick="createFormAndSubmit()">

    http://blog.csdn.net/honey_claire/article/details/7658490

    http://bbs.csdn.net/topics/300212131

    http://bbs.csdn.net/topics/390693892

    http://www.aa25.cn/code/458.shtml

  • 相关阅读:
    Ubuntu(Linux) + mono + jexus +asp.net MVC3 部署
    爬虫代理
    爬取文件时,对已经操作过的URL进行过滤
    Scrapy项目创建以及目录详情
    Scrapy 框架 安装
    爬虫案例
    爬虫基础以及 re,BeatifulSoup,requests模块使用
    Django_Admin操作
    django 权限管理permission
    Node--01
  • 原文地址:https://www.cnblogs.com/gyjWEB/p/3821088.html
Copyright © 2020-2023  润新知