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模拟表单提交的主要内容,如果未能解决你的问题,请参考以下文章