我必须将附属脚本放置在 iframe 中,我有以下代码:
Eturas.frame({ width: '100%' });
我也想设置高度:我试试这个:
Eturas.frame({ width: '100%', height: '1000px', });
但是这段代码不起作用 - 哪里可能有问题?
所有代码:
<script type="text/javascript">
var _et = _et || [];
_et.push(['project', 'daigera-egzotic']);
_et.push(['type', 'hermes']);
_et.push(['url', 'trips/index/type:exotic']);
(function() {
document.write('<' + 'script type="text/javascript" src="http://www.eturas.lt/js/v9/eturas.js"><' + '/script>');
}) ();
</script>
<script type="text/javascript">
Eturas.frame({ style: 'width: 100%; height: 100px;' });
</script>
我会用 jquery 或
来制作
$('#idFrame').css('height','100px');
$("#idFrame").css({"width":"100%","height":"100px"});