我有一个表单,我想在Android网页视图中提交它,但我的提交按钮不是默认设置。
我的意思是它没有重定向到submit.php
页面! (它只是提交数据)
我应该怎么做才能使用它的默认值?
以下是一个示例表单:
<form id="form" method="post" action="submit.php" enctype="multipart/form-data" >
// other elements ...
<input type="file" name="file" />
</form>
如何强制它再次使用默认值?