模仿jq里的选择器和color样式

Posted webSong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了模仿jq里的选择器和color样式相关的知识,希望对你有一定的参考价值。

 1 (function(){
 2             htmlElement.prototype.css = function () {
 3             var option;
 4             if (arguments.length > 0) {
 5                 option = arguments[0];
 6                 if (2 === arguments.length) {
 7                     option = {}, option[arguments[0]] = arguments[1];
 8                 }
 9 
10                 if (‘object‘ === typeof option) {
11                     for (var key in option) {
12                         if (option.hasOwnProperty(key)) {
13                             this.style[key] = option[key];
14                         }
15                     }
16                 }
17 
18             }
19             console.dir(this)
20             return this;
21         };
22 
23             function $id(id){
24                 return document.getElementById(id);
25             }
26             function $clas(cla){
27                 return document.getElementsByClassName(cla)[0];
28             }
29 
30             window["$id"]=$id;
31             window["$clas"]=$clas;
32 
33         })()
34 
35         $id(‘get‘).onclick=function function_name () {
37                if (true) {
38                 $clas(‘dom‘).css(‘background‘,‘red‘);
39                };
40 
41         }

 

以上是关于模仿jq里的选择器和color样式的主要内容,如果未能解决你的问题,请参考以下文章

jQuery-强大的jq选择器和基本操作。

微信小程序相关模仿京东静态登录页面

CSS选择器和属性

CSS伪类选择器和伪元素选择器

CSS入门(css简介与样式汇总CSS的使用方式CSS样式表的特征CSS基础选择器和复杂选择器边框阴影)

CSS(上)