test3_4_3.htm

来自「JavaScript_VBScript网页编程实例」· HTM 代码 · 共 39 行

HTM
39
字号
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>

<script language="javascript">
function check()
{
 information=document.location.search;
 information=information.substring(1,information.length);
 if (information!="")
    alert("这个网页是关于:"+information+"的!");
}

function decorate()
{
 string="?"+document.form1.text1.value;
 if (string!="")
   {
    information=string;
    document.location.search=information;
   }
 }

</script>

<body onLoad="check()">
<form name="form1">
给本地址加上提示信息:
<br><br>
<input type="text" name="text1" size=30>
<br><br>
<input type="button" name="button1" value="按此修饰URL"
 onClick="decorate()">
</form>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?