mainpage.htm
来自「Windows Web脚本开发指南/(美) Dan Heflin, Todd N」· HTM 代码 · 共 19 行
HTM
19 行
<html>
<script Language="JavaScript">
function sendXML(){
//Need to add check to make sure the hidden frame
// contains the correct page.
try{
alert(parent.hidden.submitXML(xmlDocObject.xml));
}
catch(e){
alert("An error occurred.");
}
}
</script>
<body>
<p>Example of Submitting an XML Document to the Server</p>
<xml ID="xmlDocObject" src="simple.xml"></xml>
<input type="button" onClick="sendXML()" value="Send XML">
</body></html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?