我试图提交此表单:
form id="fform" method="post" action="?index.php" autocomplete="on"
用这个:
webView.evaluateJavaScript("document.getElementById('fform').submit();")
问题是应用程序不会继续但是刷新页面。 我能做什么?
答案 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属性中的网址必须属于同一页面。我认为你应该把它换成其他的然后尝试。