页面树结构

版本比较

标识

  • 该行被添加。
  • 该行被删除。
  • 格式已经改变。

...

代码块
languagexml
<div style="width:100%;height:100%;">
	<!-- 表单的响应区域 -->
    <iframe id="myFrame" width="100%" height="100%" allowTransparency name="myFrame"></iframe>
</div>
<!-- 表单部分,在表单中设置post请求提交的地址、参数、参数值等信息 -->
<form id=submitForm method=post action=http://localhost:18080/smartbi/vision/openresource.jsp target="myFrame">
	<!-- 集成资源id -->
    <input  id="resid" type=text name=resid value=I402881e5019608c408c4fb7801960e2ec9b42d3d><br>
    <input  id=refresh value=true type=text name=refresh>
    <input  id=showtoolbar value="true" type=text name=showtoolbar>
    <input  id=showPath value=false type=text name=showPath>
"resid" value=I402881e5019608c408c4fb7801960e2ec9b42d3d>
	<!-- 设置集成资源的参数信息 -->
   <input  id=showPath value=false type=text name=showPath><!-- 方式1 -->
    <input  id=paramsInfo type=text name="paramsInfo" value='[{"name":"发货区域","value":"东北",displayValue:"东北"}]'>
    <!-- 方式2 -->
    <input type="text" name="param.发货区域" value="东北">
    <input type="text" name="paramDisplay.发货区域" value="东北">

    <!-- openresource的其他参数 -->
	<input  id=refresh value=true type=text name=refresh>
</form>

<script language='javascript'>
    var submitForm = document.getElementById("submitForm");
    // 新窗口打开
    //submitForm.target ="_blank";
    // 提交表单
    submitForm.submit();
</script>

...