cmdline.hta
来自「Windows Web脚本开发指南/(美) Dan Heflin, Todd N」· HTA 代码 · 共 19 行
HTA
19 行
<html>
<head>
<title>HTA Command Line Example</title>
<HTA:Application id=HTAApp>
<script language=JavaScript>
function onLoad(){
txtCmdLine.innerText = HTAApp.commandLine;
}
</script>
</head>
<body scroll=no onload="onLoad()">
This HTA should only be run from a command line.<br>
The HTA's path and the data passed on the command line<br>
are contained in the commandline property:<br>
<div id=txtCmdLine></div>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?