提交表单只会刷新网页

时间:2017-07-18 10:31:57

标签: javascript html webkit

我试图提交此表单:

form id="fform" method="post" action="?index.php" autocomplete="on"

用这个:

webView.evaluateJavaScript("document.getElementById('fform').submit();")

问题是应用程序不会继续但是刷新页面。 我能做什么?

2 个答案:

答案 0 :(得分:1)

这是错误?index.php。这应该是/index.php

form id="fform" method="post" action="/index.php" autocomplete="on"
  

如果您已经在index.php页面,请更改操作网址

试试这个

document.getElementById("fform").submit();

使用JQuery

$('#fform').submit();

更改操作属性:您可以使用 JQuery attr()功能轻松完成此操作。

$('#fform').attr("action", "/your/url/here");

答案 1 :(得分:0)

您在action属性中的网址必须属于同一页面。我认为你应该把它换成其他的然后尝试。