gpt4 book ai didi

php - 破坏 "submit"按钮的功能

转载 作者:行者123 更新时间:2023-11-28 02:25:24 24 4
gpt4 key购买 nike

所以,为了详细说明标题,假设我有一个

<input type="submit" value="Submit" name="Submit">

HTML 网页上的按钮,其功能类似于输入用户名和密码,然后使用 POST HTTP 方法提交该表单。例如:

<html>
</script>
<div align="center">
<form method="POST" action="sup.py" name="testing">
<table width="30%" height="50">
<tr>
<td width="100%" height="30" align="right">
Username:</td>
<td width="100%" height="30">
<input type="username" name="username" size="20">
</td>
</tr>
<tr>
<td width="100%" height="30" align="right">
Password:</td>
<td width="100%" height="30">
<input type="password" name="password" size="20">
</td>
</tr>
<tr>
<td width="100%" height="30" align="center" colspan="2">
<input type="submit" value="Submit" name="Submit">
<input type="hidden" name="page" value="submit_info">
</td>
</tr>
</table>
</form>
</div>
</body>
</html>

现在,如果网页已经在另一个非本地网络服务器上,我想弄清楚是否有一种方法可以在您按下“提交”时阻止提交表单,实际上当您按下时什么也不会发生按钮,破坏了它的功能。

我不确定,但是否有可能在此上下文中本地破坏公共(public)网站上的 HTML 脚本(使用 python 脚本运行,因此代码中的操作)?

在此先感谢大家,如果有任何问题,请不要犹豫,让我解释一下!

最佳答案

尝试将按钮类型从提交更改为按钮

<input type="button" value="Submit" name="Submit">

关于php - 破坏 "submit"按钮的功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54421363/

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