随笔分类 - JavaScript
摘要:一言以蔽之:==先转换类型再比较,===先判断类型,如果不是同一类型直接为false。===表示恒等于,比较的两边要绝对的相同alert(0 == ""); // truealert(0 == false); // truealert("" == false); // truealert(0 ===...
阅读全文
摘要:window.showModalDialog()方法用来创建一个显示HTML内容的模态对话框。window.showModelessDialog()方法用来创建一个显示HTML内容的非模态对话框。使用方法:vReturnValue = window.showModalDialog(sURL [, v...
阅读全文
摘要:第一种模式:工厂方式varlev=function(){return"啊打";};functionParent(){varChild=newObject();Child.name="李小龙";Child.age="30";Child.lev=lev;returnChild;};varx=Parent...
阅读全文
摘要:js 触发事件大全 事件浏览器支持解说 一般事件onclickIE3、N2鼠标点击时触发此事件 ondblclickIE4、N4鼠...
阅读全文
摘要:window.open()与window.showModalDialog区别弹出窗口两种方式:1.window.showModalDialog:var feature = "dialogWidth:615px;dialogHeight:505px;status:no;help:no;scroll:n...
阅读全文
摘要:一、window.open()支持环境:JavaScript1.0+/JScript1.0+/Nav2+/IE3+/Opera3+二、基本语法:window.open(pageURL,name,parameters)其中:pageURL为子窗口路径name为子窗口句柄parameters为窗口参数(...
阅读全文
摘要:选择 编号 姓名 ...
阅读全文