我正在使用applicationcraft.com并拥有以下测试应用http://acft.ws/tyjk
我设法停止点击并打开一个新窗口。 我需要捕获点击链接的网址。然后我可以使用它在移动应用程序中的iframe或childBrowser中打开。
所有警报都是我猜测网络搜索的语法。第一个答案是Capturing .click for URLs。
function noopHandler(evt) {
//alert($(this).attr("href") + "/");
//alert(app.w('label').base().attr("href") + "/");
//alert(app.w('label').base()[0].attr("href") + "/");
//alert($(this).find("a").attr('href'));
//alert(app.OBJ2JSON(app.w('label').base()));
//alert(app.OBJ2JSON(app.w('label').base()[0]));
evt.stopPropagation();
evt.preventDefault();
}
function handler_application_onAppStarted(){
var labelToCheck = app.w('label').base()[0];
labelToCheck.addEventListener('click', noopHandler, false);
}
MrWarby