本文介绍了提交使用AJAX创建的表单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好!我有这个剧本
Hi everyone! I have this script
<html>
<head>
<script>function create_form{document.write(''<form ....some="" atributes=""><input type="text" name="user" id="user" /><input type="text" name="info" id="info" /><input type="submit" value="Submit" /></form>'');}</script>
</head>
<body onload="create_form()">
</body></html>
我目前正在使用Windows.Forms中的WebBrowser.
如何自动提交表单?
谢谢!
I am currently using WebBrowser from Windows.Forms.
How do I automate my form submission?
Thanks!
推荐答案
这篇关于提交使用AJAX创建的表单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!