js模拟表单提交

Posted 哈喽!树先生

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js模拟表单提交相关的知识,希望对你有一定的参考价值。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace LK.BPMS.CSLogin
{
    public partial class ClientWb : Form
    {
        public string token { get; set; }
        public ClientWb(string token)
        {
            InitializeComponent();
            this.token = token;
        }

        string path = System.Configuration.ConfigurationSettings.AppSettings["Uri"];
        
        private void ClientWb_Load(object sender, EventArgs e)
        {
            string js = "<script type=\"text/javascript\">window.onload=function(){document.getElementById(\"tokenid\").click();}</script>";

            webBrowser1.DocumentText = "<form action=\"" + path + "\" method=\"post\"><input type=\"submit\" id=\"tokenid\" name=\"token\" value=\"" + token + "\" onsubmit=\"return checkForm()\"/></form>" + js + "";
            
            //webBrowser1.Navigate(ut);
        }
    }
}

 

以上是关于js模拟表单提交的主要内容,如果未能解决你的问题,请参考以下文章

js模拟form表单提交数据, js模拟a标签点击跳转,避开使用window.open引起来的浏览器阻止问题

js 模拟表单提交

js 模拟form表单post提交

在JS中模拟表单的post提交,进行页面的跳转

apipost怎么模拟表单提交下载功能

.Net模拟提交表单