我设法用javascript更改了iframe的src。
var path='images/tattoo/fullsize/';
var h=$('#borderlessFrame').height();
var bigFrame=$('#borderlessFrame');
function loadGallery(num)
{
bigFrame=$('#borderlessFrame');
var galPath=path + num; // path to the image
我在Liferay portlet中嵌入了一个Angular2应用程序。Liferay tomcat与angular2应用程序在不同的域中。我正在尝试根据iframe应用程序的高度调整iframe的大小。我使用Liferay的tomcat上的helper文件来做这件事--基于answer 。
这就是我到目前为止所得到的: tomcat上带有父应用程序的helper.html:
<html>
<!--
This page is on the same domain as the parent, so can
communicate with it to order the i
拥有这样的iframe:
<iframe class="e2e-iframe-trusted-src" height="480" width="500" src={{trailer.address}}>
</iframe>
我收到以下错误:
"ERROR Error: unsafe value used in a resource URL context"
nb:trailer.address正在检索url。