DOM操作常函数集合特效,这几款特效经典实用,当用点击按钮后看效果,结合自己的需求来修改即可。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <meta name="keywords" content="武鸣人网站,武鸣信息网,武鸣本地网,武鸣信息资源平台,减肥,健身,励志,励志语录,js特效,网页特效,www.wuming.ren"> <meta name="description" content="欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。"> <title>几款经典dom操作常函数集合演示_武鸣人</title> </head> <body> <a href="https://www.wuming.ren">武鸣人</a>,各种信息资源免费发布,分享励志语录经典短句,减肥健身常识,各种js特效代码。网站很好记住,wuming.ren(武鸣拼音.ren域名后缀)<hr> <!--欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。--> <script type="text/javascript" src="https://www.wuming.ren/ad/tc.js"></script> <script type="text/javascript" src="https://www.wuming.ren/ad/a.js"></script> <div id="aa">这是在前面的,注意这两个after引用的不同点_after('div')、_after(aa)</div> <a id="url" href="https://www.wuming.ren">国人理财</a> <div id="lwkyy" style="border:1px solid red; padding:1em;">DOM操作常函数集合精简,作用人:lwkyy,sky整理收集。</div> <input type="button" onclick="_hide('lwkyy')" value="隐藏ID为lwkyy的DIV" /> <input type="button" onclick="_show('lwkyy')" value="显示ID为lwkyy的DIV" /> <input type="button" onclick="_css('lwkyy')" value="设置ID为lwkyy的DIV的样式" /> <input type="button" id="vals" onclick="_val(this)" value="获取这个INPUT的value值" /> <input type="button" id="vals" onclick="_attr('url')" value="设置ID为url的A的title属性值" /> <input type="button" id="vals" onclick="_after('div')" value="在ID为lwkyy的DIV后面建一个DIV" /> <input type="button" id="vals" onclick="_after2(aa)" value="将ID为aa的DIV移动到最后面" /> <script language="javascript"> //武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) Element={}; function $(e){if(e)return Element.extend(typeof(e)=='string'?document.getElementById(e):e);} Element.extend=function(e){ if (e){ for (v in Element.Methods) e[v] = Element.Methods[v]; return e; }else{ return 'undefined'; } }; Element.Methods = { hide: function(){this.style.display = 'none';return this;}, html: function(v){if(v){this.innerHTML = v;return this;}else return this.innerHTML;}, val: function(v){if(v){this.value = v;return this;}else return this.value;}, attr: function(v,k){if(k){this.setAttribute(v,k);return this;} else return this.getAttribute(v);}, css: function(v,k){if(typeof(v)=='object'){for(var i in v){this.style[i] = v[i]};return this;}if(k){this.style[v] = k;return this;} else return this.style[v];}, after: function(e){var e=(typeof(e)=='object')?e:document.createElement(e);this.parentNode.appendChild(e);return $(e)} //注意这返回值 }//武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) /* * For Example */ function _hide(id) { $(id).hide(); } function _show(id) { $(id).css('display','block') } function _css(id) { $(id).css({'background':'#369','color':'#FFF'}); } function _val(id) { alert($(id).val()); } function _attr(id) { $(id).attr('title','国人理财'); } function _after(e) { $('lwkyy').after(e).attr('id','ask144').html("建立的这个DIV是全新的,没有出现过的,在用after时得注意基返回的是新建立的或移动过后的节点。"); } function _after2(e) { $('lwkyy').after(e); }//武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) </script> </body> </html>
本文来自武鸣人网站,转载请注明出处