Eclipse 带Phonegap和JQuery Mobile的iFrame将应用程序转义到浏览器 用户名: 密码:

Eclipse 带Phonegap和JQuery Mobile的iFrame将应用程序转义到浏览器 用户名: 密码:,eclipse,iframe,jquery-mobile,cordova,mobile-application,Eclipse,Iframe,Jquery Mobile,Cordova,Mobile Application,我试图在我的phonegap应用程序中显示iFrame,但我单击的每个链接都会进入浏览器,我如何避免这种情况?请不要建议此答案(),因为此处预先编写的Phonegap已过时请将外部链接的域添加到Xcode中Phonegap.plist中的ExternalHosts条目中(假设您正在使用iOS应用程序) 站点说明:“drumbeat.pro”->站点提供什么类型的服务/产品?我是一名鼓手…drumbeat是某种“多媒体代理”,请继续查看,我目前正在为所有平台开发此应用程序 <div da

我试图在我的phonegap应用程序中显示iFrame,但我单击的每个链接都会进入浏览器,我如何避免这种情况?请不要建议此答案(),因为此处预先编写的Phonegap已过时

请将外部链接的域添加到Xcode中Phonegap.plist中的ExternalHosts条目中(假设您正在使用iOS应用程序)


站点说明:“drumbeat.pro”->站点提供什么类型的服务/产品?我是一名鼓手…

drumbeat是某种“多媒体代理”,请继续查看,我目前正在为所有平台开发此应用程序
<div data-role="content">    
    <iframe src="http://drumbeat.pro/" frameborder="0" width="99%" height="100%" align="middle"></iframe>
    <form id="loginForm">
    <div data-role="fieldcontain" class="ui-hide-label">
        <label for="username">Username:</label>
        <input type="text" name="username" id="username" value="" placeholder="Username" />
    </div>

    <div data-role="fieldcontain" class="ui-hide-label">
        <label for="password">Password:</label>
        <input type="password" name="password" id="password" value="" placeholder="Password" />
    </div>

    <input type="submit" value="Login" id="submitButton">
    </form>

</div>