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

📄 document1.htm

📁 这是一些关于JavaScript的学习资料 希望对大家有用
💻 HTM
字号:
<html>
<head>
<Script Language="JavaScript">
//原来的颜色
document.bgColor="blue";
document.vlinkColor="white";
document.linkColor="yellow";
document.alinkcolor="red";
//动态改变颜色

function changecolor(kkk){
   document.bgColor=kkk.value;
   document.vlinkColor="blue";
   document.linkColor="green";
   document.alinkcolor="blue";
 }

</script>
</HEAD>
<body bgColor="White" >
<A href="test8_2.htm"> 调用动态按钮文档</a>

<form >
   <Input type="button"  Value="red" onClick="changecolor(this)">
   <INPUT type="button" Value="green" id=button1 oncLICK="changecolor(this)">
    <INPUT type="button" Value="yellow" id=button1 oncLICK="changecolor(this)">
</form>
</BODY>
</HTML>

⌨️ 快捷键说明

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