如何在cocoa中使用stringByEvaluatingJavaScriptFromString单击按钮

时间:2012-01-10 09:48:09

标签: javascript iphone ios uiwebview

我想使用UIWebview stringByEvaluatingJavaScriptFromString自动点击按钮 HTML源

<input type="image" src="image.gif" alt="sign-in" onclick="return check_form();" value=" Enter " tabindex="3"/>

我尝试直接调用函数名称,但它不起作用。任何人都可以帮助我吗?

[webView stringByEvaluatingJavaScriptFromString:@"check_form()"];

1 个答案:

答案 0 :(得分:0)

您正在寻找的JavaScript是:

document.getElementById("check_form_button").click();

请务必在按钮上添加id="check_form_button"