晚上好,
我们能否检测到 UIWebView 中加载的网站中出现的确认对话框。如果有人知道如何在UIWebView
Delegate 方法中处理。下面给出了我在网站上查看的源文件中编写的代码。
<span>
<input type="submit" id="cancel" value="Cancel" name="cancel" style="display: none;" /><a
href="#" onclick="return Cancel();" tabindex="8" class="cancel_link">Cancel</a>
</span>
function Cancel()
{
if (confirm('Are you sure you want to exit? Your purchase has not completed. Click Cancel to return to WebPAY. Click OK to return to the merchant site.'))
{
$('#cancel').click();
return true;
}
return false;
}
如何获取UIWebView
委托方法中的值?
我需要检查onclick="return Cancel();
生成确认对话框的位置