码迷,mamicode.com
首页 > Web开发 > 详细

not use jquery

时间:2016-04-10 08:00:36      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

document.getElementById(‘myElement‘);
document.querySelector(‘#myElement‘);

document.getElementsByClassName(‘myElement‘);
document.querySelectorAll(‘.myElement‘);

document.getElementsByTagName(‘div‘);
document.querySelectorAll(‘div‘);

document.querySelectorAll(‘[data-foo-bar="someval"]‘)

document.querySelectorAll(‘#myForm :invalid‘);

document.getElementById(‘myParent‘).children;

document.querySelector(‘#myParent > [ng-click]‘);
document.querySelectorAll(‘#myParent A‘);
document.querySelectorAll(‘DIV:not(.ignore)‘);
document.querySelectorAll(‘DIV, A, SCRIPT‘);

CSS3:
p:not(.first) {
color: red;
}
p:not(.first):not(.fourth) {
color: red;
}
元素重1开始,没有0;
p:not(:nth-child(2)):not(:first-child) {
color: red;
}

not use jquery

标签:

原文地址:http://www.cnblogs.com/jayruan/p/5373306.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!