好的,我从这里尝试了两种解决方案(论坛,到目前为止还没有发生任何事情)这是我的代码:
<script>
<!---tried this without success-->
$("#mySupport").resizable();
alert("Hello! I am an alert box!!");
<!--also tried this from the forums-->
$(document).ready(function(){
$('#mySupport', window.parent.document).height($(document).height());
});
</script>
<iframe id="mySupport" width="960" height="900" seamless src="https://enterraglobal.zendesk.com/" scrolling="no">
</iframe>
<!--I don't know probably I'm missing something-->