привет программисту друзья. У меня есть проект в Cordova, и я хочу, чтобы страница, введенная в iframe, имела доступ к событиям и переменным родительской страницы. Все работает отлично, если я попробую это в Chrome, отключив «политику того же происхождения» «--disable-web-security»
Но если я сделаю это в эмуляторе или если я сгенерировал .apk, он не не работает.
Что я могу сделать?
Вот мой индекс. html
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Security-Policy" content="default-src * data: gap: https://ssl.gstatic.com 'unsafe-eval'; style-src * 'unsafe-inline'; media-src *;frame-src 'self' http://iealfonsolopez.com; img-src * data: content:;">
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-tap-highlight" content="no">
<meta name="viewport" content="initial-scale=1, width=device-width, viewport-fit=cover">
<link rel="stylesheet" type="text/css" href="css/index.css">
<title>Hello World</title>
<script language="javascript">
function popup(saludo){
var name=saludo;
alert(name);
}
function hello(string){
alert("Ya salimos y ahora vamos a pegar el texto '"+string+"' acá afuera");
var name=string;
document.getElementById('myAnchor').value=name;
}
</script>
</head>
<body>
<form name="frm3">
<iframe id="iframe" src="http://iealfonsolopez.com/inputForm.html" height="150"></iframe>
Name: <input type="text" id="myAnchor">
<input type="button" onClick="popup(this.form.myAnchor.value)" value="clic"/>
</form>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>
Мне принадлежит сервер, на котором размещен веб-сайт в Iframe
<html>
<head>
<title>IFrame Child Example</title>
<script language="javascript">
function mensaje(texto){
alert("Vamos a sacar el siguiente texto "+texto);
parent.hello(texto);
}
</script>
</head>
<body>
<form name="frm2" >
<h1><font color="#000099">Input Form</font></h1>
<p>Name : </p><input type="text" name="resp" id="resp" value=""/>
<input type="button" onClick="mensaje(this.form.resp.value);" value="Pasar a Afuera" />
</form>
</body>
Вот мой конфиг. xml
<?xml version='1.0' encoding='utf-8'?>
<widget id="io.cordova.hellocordova" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>HelloCordova</name>
<description>
A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="dev@cordova.apache.org" href="http://cordova.io">
Apache Cordova Team
</author>
<content src="index.html" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
</widget>