-
document.write("hello");是原样输出"hello" document.getElementById("p1").style.color="blue"; 这句是找到ID为"p1"的内容,并将p1中的内容的样式设为蓝色查看全部
-
<script type="text/javascript"> var myage = 18; if(myage>=18) //myage>=18是判断条件 { document.write("你是成年人。");} else //否则年龄小于18 { document.write("未满18岁,你不是成年人。");} </script>查看全部
-
var 变量名 变量名可以任意取名,但要遵循命名规则: 1.变量名必须使用字母或者下划线(_)开始。 2.变量名必须使用英文字母、数字、下划线(_)组成。 3.变量名不能使用JavaScript关键词与JavaScript保留字。查看全部
-
<script type="text/javascript"> document.write("hello") ; document.getElementById("p1").style.color="blue"; </script>查看全部
-
第二章:常用函数 1.document.write("xx"+变量名); 2.alert("xx"+"变量名"); 3.confirm()函数 confirm(str); str:在消息对话框中要显示的文本 返回值: Boolean值 4.prompt()函数 prompt(str1, str2); str1: 要显示在消息对话框中的文本,不可修改 str2:文本框中的内容,可以修改 返回值: 点击确定按钮,文本框中的内容将作为函数返回值;点击取消按钮,将返回null 5.window.open('url','_blank','参数设置') 设置打开新网页 http://img1.sycdn.imooc.com//52e3677900013d6a05020261.jpg查看全部
-
第一章: 1.关于引入js 内部引入 <script type="text/javascript"> document.write("输出内容"); //指原样输出内容 document.getElementById("p").style.color="blue"; //指调用id为p的标签,将其格式化为蓝色 </script> 外部引入 <script src="main.js"></script> 2.关于注释 单行注释可通过//实现 ,多行注释可通过/* */实现 3.关于变量 可通过【var 变量名】定义变量,其中变量名可以是字母、数字或者下划线,但变量必须以字母或者下划线开始。变量区分大小写。 4.关于函数 function name(){ 函数} 在需要的位置添加name()函数名即可查看全部
-
Attribute是属性的意思,文章仅对部分兼容IE和FF的Attribute相关的介绍。 attributes:获取一个属性作为对象 getAttribute:获取某一个属性的值 setAttribute:建立一个属性,并同时给属性捆绑一个值 createAttribute:仅建立一个属性 removeAttribute:删除一个属性 getAttributeNode:获取一个节点作为对象 setAttributeNode:建立一个节点 removeAttributeNode:删除一个节点 attributes可以获取一个对象中的一个属性,并且作为对象来调用查看全部
-
js.display查看全部
-
留着复习查看全部
-
var mymeaasge=confirm("问句")查看全部
-
<html> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <head> <script type="text/javascript"> function small() { alert("晓得!"); } </script> </head> <body> <form> <input type="button" value="点我" onclick="small()" /> </form> </body> </html>查看全部
-
var score=80; if(score>=60) {document.write("及格");} else {documen.write("不及格");}查看全部
-
<!--当点击相应按钮,执行相应操作,为按钮添加相应事件--> <input type="button" value="改变颜色" onclick="changeColor()"> <input type="button" value="改变宽高" onclick="changeWidthAndHeight()"> <input type="button" value="隐藏内容" onclick="hiddenContext()"> <input type="button" value="显示内容" onclick="showContext()">查看全部
-
function openWindow(){ var openW=confirm("是否打开"); if (openW==true){ window.open("http://www.imooc.com",'_blank','width=400,height=500','toobar=no,menubar=no'); } else alert("hja "); }查看全部
-
function Wopen(){ window.open('http://www.imooc.com','_blank','width=600,height=40,top=100,left=0,menubar=no,toolbar=no,status=no,scollsbars=no'); }查看全部
举报
0/150
提交
取消