我是HTML / Javascript / Jquery的新手,所以这个问题看起来很基本。 但是我在Phonegap的应用程序中找到了我想要使用的filebrowser online。 问题是,我下载的示例使用此方法打开文件浏览器。
<a href="fileBrowser.html" data-role="button" data-inline="true" id="browseBtn">Browse</a>
但我需要使用Javascript打开它,因为我只想在长按按钮时使用它。 但这些方法都不起作用:
window.location.href = ("fileBrowser.html");
window.open("fileBrowser.html");
我称之为(只是为了测试它是否有效):
<a onclick="test()" data-role="button" data-inline="true" id="browseBtn">Browse</a>
它应该是这样出来的:
但不幸的是,当我使用Javascript时它出现了:
答案 0 :(得分:1)
看起来你使用jQuery Mobile?
使用此:
$.mobile.changePage("fileBrowser.html");