gpt4 book ai didi

javascript - 使用javascript自动填充 "form"和 "submit"而不按 "submit"

转载 作者:行者123 更新时间:2023-11-30 17:30:02 29 4
gpt4 key购买 nike

<分区>

我查看了不同的线程,但找不到合适的解决方案。
我想制作一个伪造的 html 文件,它会自动填写表单并在浏览器加载时提交。

maksreciever 这两个输入字段由我提供的值填充,但我需要按提交。
如果可能的话,如果输入字段的值不可见会更好。谢谢。

<html xmlns="http://www.w3.org/1999/xhtml">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<head>
<script type="text/javascript">
function postReq() {
var frm = document.getElementById('post_req');
if (frm) {
frm.submit();
}
}
</script>

<body onload="postReq()">
<form method=POST name=exampleform id='post_req'
action="/ex/makfoer.php">
<input name=maks type=hidden value="2" />
<input name=reciever type=hidden value="otto" />
<input type=submit />
</form>
</body>

</html>

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com