html 文件动态加载.PDI 流程图

时间:2021-08-29 23:26:44
 1  //javascript脚本
<script>
window.onload = function () {
var aid = document.getElementById("aid").href; var div1 = document.getElementById("div1");
var html = '<object classid="clsid:4F26B906-2854-11D1-9597-00A0C931BFC8" codebase="" id="Pbd1" name="Pbd1" width="100%" height="990px">';
html += ' <param name="_cx" value="5080" />';
html += '<param name="_cy" value="5080" />';
html += '<param name="DisplayUrl" value="' + aid + '" />';
html += '</object>';
div1.innerHTML = html;
};
</script>
  //html 代码 此处a 标签的href 可以是从db中取,也可以是其它的地方传过来
<a href="../PIPDI/11.PDI" id="aid"></a>
<center>
<div id="div1"> </div>
</center>