我有这个表格:
<form id="form1" name="form1" method="post" action="#" onsubmit="window.open('http://www.google.com','Google','width=800,height=500,top=5000,left=6000,status=yes,resizable=yes,scrollbars=yes');">
<input type="submit" name="submit" onclick="doSubmit();" id="submit" value="Submit" />
</form>
属于它的javascript是:
<script type="text/javascript">
function doSubmit () {
form1.submit();
}
</script>
当我在本机 safari 应用程序中测试它时一切顺利并且 onsubmit 操作会打开一个新选项卡,但是当我在 UIWebView 中测试它时,不会触发 onsubmit。
表格提交并注册在
-(BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
并且所有方法都设置为拦截弹出窗口
[webView stringByEvaluatingJavaScriptFromString:@"window.open = function( inurl, blah, blah2 ) { document.location = 'newTab:'+inurl; }"];
在适当的 UIWebView 委托方法中。
关于它为什么不发射的任何想法?
谢谢!