如何在 UIWebView 上模拟点击事件?
Posted
技术标签:
【中文标题】如何在 UIWebView 上模拟点击事件?【英文标题】:How to simulate tap event on UIWebView? 【发布时间】:2012-11-11 22:43:04 【问题描述】:我只需要通过页面脚本处理鼠标按下+向上事件。
【问题讨论】:
【参考方案1】:我不确定公共 API 是否可以做到这一点。如synthesizing-touch-event-on-iphone 所述,使用私有 API 是可能的。不过,您将无法在 appstore 应用中使用此功能。
另一种可能的方法是使用 javascript。不确定这是否正是您想要的。可以使用 here 中提到的 javascript 来完成,
function simulate(element, eventName)
var options = extend(defaultOptions, arguments[2] || );
var oEvent, eventType = null;
for (var name in eventMatchers)
if (eventMatchers[name].test(eventName)) eventType = name; break;
if (!eventType)
throw new SyntaxError('Only htmlEvents and MouseEvents interfaces are supported');
if (document.createEvent)
oEvent = document.createEvent(eventType);
if (eventType == 'HTMLEvents')
oEvent.initEvent(eventName, options.bubbles, options.cancelable);
else
oEvent.initMouseEvent(eventName, options.bubbles, options.cancelable, document.defaultView,
options.button, options.pointerX, options.pointerY, options.pointerX, options.pointerY,
options.ctrlKey, options.altKey, options.shiftKey, options.metaKey, options.button, element);
element.dispatchEvent(oEvent);
else
options.clientX = options.pointerX;
options.clientY = options.pointerY;
var evt = document.createEventObject();
oEvent = extend(evt, options);
element.fireEvent('on' + eventName, oEvent);
return element;
function extend(destination, source)
for (var property in source)
destination[property] = source[property];
return destination;
var eventMatchers =
'HTMLEvents': /^(?:load|unload|abort|error|select|change|submit|reset|focus|blur|resize|scroll)$/,
'MouseEvents': /^(?:click|dblclick|mouse(?:down|up|over|move|out))$/
var defaultOptions =
pointerX: 0,
pointerY: 0,
button: 0,
ctrlKey: false,
altKey: false,
shiftKey: false,
metaKey: false,
bubbles: true,
cancelable: true
然后使用,
simulate(document.getElementById("btn"), "click");
您可以尝试通过在您的UIViewController
中实现UIWebView's
委托方法webViewDidFinishLoad:
并在其中调用[webview stringByEvaluatingJavaScriptFromString:@"methodName()"];
来执行javascript。检查是否有帮助。
【讨论】:
非常感谢!但是如何使用最后一个已知的鼠标位置在 javascript 上制作事件?有可能吗? 我对 javascripts 没有太多经验。检查这个,如果它有帮助。 ***.com/questions/1222958/…。如果这不起作用,您可能需要发布一个新问题,因为它是一个不同的问题。 这对我没有帮助 - 脚本不适用于我的情况:( 第一个链接在 SDK6 上有 18 个错误。 对不起,我应该使用鼠标坐标作为选项来调用它以使其正常工作。怎么做? 正如我所说,我不确定javascripts,你检查***.com/questions/1222958/…以上是关于如何在 UIWebView 上模拟点击事件?的主要内容,如果未能解决你的问题,请参考以下文章
UIWebview 在 iPhone 设备上很慢,在模拟器上很快