js系统内置函数.doc

  1. 1、本文档共14页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
js系统内置函数

1 系统内置函数 OnClick点击事件 OnLoad 页面加载事件 OnSubmit 提交事件 OnBlur失去焦点事件 OnFocus 获得焦点事件 OnChange 改变事件 OnMouseover 鼠标移入事件 OnMouseout 鼠标移出事件 script window.onload = function(){ var num = 123; alert(typeof(num)) num = parseInt(num);//将字符串类型转换为number 用paresInt()的时候转变的字符串里面如果不是以数值开始的话,则返回NAN不是一个数字(是number) alert(typeof(num)); } /script var num =123.4 num = parseInt(num); alert(num) /*123*/ num = parseFloat(num); alert(num) /*123.0*/ 2 window.onload = function(){ alert(HELLO WORLD) confirm(是否确认注册) prompt(请输入信息) console.log(hello); } window.onload = function(){ alert(HELLO WORLD) confirm(是否确认注册) prompt(请输入信息) console.log(document.getElementById(txt)); } /script /head body input type=text id=txt / /body window.onload = function(){ alert(hello) var flag = confirm(是否确认) if(flag){ alert(您点击的是确认) }else{ alert(你点击的不是确认) return false; } }var str=prompt (请输入信息) if(str==admin){ alert(admin) }else{ alert(输入错误) }!DOCTYPE html html head meta charset=UTF-8 title/title script function dianji(){ var obj = document.getElementById(txt);//获取当id为txt目标对象 obj.style.fontSize = 50px; obj.style.color = red; } function checkSex1(){ alert(document.getElementById(sex1).value) } function checkSex2(){ alert(document.getElementById(sex2).value) } function unload(){ alert(unload) } /script /head body onunload=unload() div id=txt onclick=dianji()//点击点击事件 情人分手快乐! /div 性别:input type=radio name= sex id=sex1 onclick=checkSex1(this) value=男 /男br / input type=radio name= sex id=sex2 onclick=checkSex2(this) value=女 /女 /body /html!DOCTYPE html html head meta charset=UTF-8 title/title script function check(){ if(document.getElementById(user).value.length8){ alert(用户名的长度不能大于8) }else{ alert(用户名可用) } } function checkPwd(){ if(document.getElementById(pwd).value.lengt

文档评论(0)

haihang2017 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档