2
我們可以檢測到在UIWebView中加載的網站中出現的確認對話框。如果知道如何處理UIWebView
委託方法。下面給出了我在網站上查看的源文件中編寫的代碼。
<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();
在那裏,因爲它是生成的確認對話框