24 行
501 B
Plaintext
24 行
501 B
Plaintext
<script>
|
|
$(function(){
|
|
|
|
var ajax = new Z.Ajax();
|
|
ajax.setClassName("ConsolePresenter");
|
|
ajax.setMethodName("getH5DesignUrl");
|
|
ajax.setFailureAlert();
|
|
ajax.setSuccess(function(responseText){
|
|
Z("#openFrm").attr("src",responseText);
|
|
});
|
|
ajax.execute();
|
|
|
|
})
|
|
</script>
|
|
<style>
|
|
#openFrm{ width:100%; height:860px; border:none;}
|
|
</style>
|
|
|
|
<div id="templateResult" class="z-pd20 z-active z-text-center">
|
|
<iframe id="openFrm" border=0 src="about:blank">
|
|
|
|
</iframe>
|
|
</div>
|