⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test3_4_3.htm

📁 JavaScript_VBScript网页编程实例
💻 HTM
字号:
<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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -