摘要:
1. 禁止右键点击 2. 隐藏搜索文本框文字 3. 在新窗口中打开链接 4. 页面样式切换 阅读全文
摘要:
<div> 父亲 <span> 第一代 <a>第二代</a> </span></div> mouseover:鼠标经过被选元素及其子元素时会触发该事件,对应mouseout 在错误的元素响应mouseover或mouseout事件的情况下。假设在我们的例子中,为<div>添加了一个mouseout事 阅读全文
摘要:
in:其左边是一个字符串或可以转换成字符串,右边是一个对象或数组例:var person={firstname:"Bob", lastname:"Kin"}; for(x in person) { text = text + person[x]; } document.write(tex... 阅读全文
摘要:
with语句主要用来对一个对象操作多个属性,使代码简洁易读。语法:with(object) statementsobject是新的默认对象,statements是一个或多个语句例如:var test ='hello world';with(test) { alert(toUpperCase())... 阅读全文