1

我想在 jquery mobile android 应用程序中打开一个 url(例如 www.google.com)。我想在应用程序本身的上下文中打开它。我不想在单击链接或按钮时打开不同的浏览器来启动它。我想在应用程序中打开它。可能吗。谢谢。

4

1 回答 1

1

在这里找到解决方案:

function openInWebView(url)
{
    var anchor = document.createElement('a');
    anchor.setAttribute('href', url);

    var dispatch = document.createEvent('HTMLEvents')
    dispatch.initEvent('click', true, true);

    anchor.dispatchEvent(dispatch);
}

然后在您的应用程序中调用这样的函数:

openInWebView('http://google.com')
于 2012-04-20T17:24:25.187 回答