“获取artDialog对话框document” 的相关文章
《Dom Scripting》读书笔记
《Dom Scripting》读书笔记 Canca 最近看了一本《Jeremy Keith: DOM Scripting, Web design with JavaScript and the DOM. Apr…
javascript MailTo 邮件技巧
调用email的方法 //<a href="mailto:talantlee@126.com">Email</a>window.location.href="mailto:talantlee@126.com";myform.action="mailto:talant…
javascript 中面向对象編程 (类的继承)
// 人的基類var Person=new ( function(){ var sex; var name; this.getSex=function() &nbs…
javascript IE与FireFox 一些兼容写法
1>获取控件用document.getElementById,不用document.all(FF等浏览器不支持)2><button> 会被firefox解释为提交form或者刷新页面,需要写标准<button type="button">3>使用childN…
javascrip 事件追加方法
基本方法:attachEvent(IE)/detachEvent;addEventListener( Mozilla, Netscape, Firefox)/removeEventListener在之前的邏輯判斷式的基礎上,在設計javascript的時候,可以針對瀏覽器的不同,寫出適合不同種類瀏覽…
javascript在IE和Firefox中的兼容考虑
1.document.formName.item("itemName") 问题说明:IE下,可以使用document.formName.item("itemName")或document.formName.elements["elementName"];Firefox下,只能使用docum…