?? p720_ie_inst.ws
字號:
<?xml version="1.0" standalone="yes"?>
<job id="jobIE_Inst">
<script language="jscript" src="objIE.js"></script>
<script language="jscript" src="dialog.js"></script>
<script language="jscript">
<![CDATA[
objIE.Navigate("c:\\wsh\\html_dialog.htm");
// wait a bit - time to hook the document
while (!objDoc)
{
WScript.Sleep(100);
}
var cAll = objDoc.all;
var oBody = objDoc.body;
objIE.Visible = true;
// wait until button is clicked
while ("false" == oBody.getAttribute("UPDATE"))
; // do nothing
var sName = cAll("txtName").value + "\n";
var sQuest = cAll("txtQuest").value + "\n";
var sColor = cAll("txtColor").value + "\n";
objIE.Quit();
objIE = null;
WScript.Echo( "Your input:\n\n" + sName + sQuest + sColor );
WScript.Quit();
]]>
</script>
</job>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -