gpt4 book ai didi

javascript - 如何在phonegap项目中使用iframe?

转载 作者:行者123 更新时间:2023-11-29 17:39:36 26 4
gpt4 key购买 nike

我创建了一个 phonegap 项目。在这个项目中有一个集成了按钮的页面。此按钮引用一个 url(“InAppbrowser:True”)。

我想集成 iframe 而不是重定向。

我已经试过了:

<iframe src="http://www.example.com/" style="width:100%; height:100%;">

不幸的是,我不知道如何以及在哪里使用它。

(这是一个.js文件,在以下路径app/module/custom/example.js下)

example.js (code snippet) 

content['iframe'] = {
theme: 'button_link',
text: 'register',
path: 'https://www.google.de/',
options: {
iframe: true,
//InAppBrowser: true
}
};

最佳答案

<div id="QR" data-role="view" data-model="Your data model name"></div>

请将以上代码放入您的 HTML 文件中

然后在下面的代码中放入您的点击按钮事件

//Append iframe 
$("#QR").find(".view-content").append('<iframe id="ifrQR" src="" target="_parent"></iframe>');
var iFr1 = document.getElementById('ifrQR');
iFr1.src = "http://www.google.in";
var $if1 = $("#QR").find("#ifrQR");
$if1.load(function () {
alert("iframe loaded");
});

关于javascript - 如何在phonegap项目中使用iframe?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53874691/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com