有关 iframe 显示的问题
<script language="JavaScript">function Run(strPath) {
exe.value=strPath;
try {
var objShell = new ActiveXObject("wscript.shell");
objShell.Run(strPath);
objShell = null;
}
catch (e){alert('找不到文件"'+strPath+'"(或它的组件之一)。请确定路径和文件名是否正确,而且所需的库文件均可用。')
}
}
</script>
----------------------------------
<body>
<button class="button" onClick="Run('notepad')">
记事本</button><br />
<iframe name="IFRAME" id="IFRAME" width=600 height="400" frameborder="1" scrolling="auto" vspace="0" marginheight="0" marginwidth="0"> </iframe>
</body>
如何改动javascript那段代码,实现点击“记事本”按钮时,在iframe中打开