JS 2020/6/06 jquery bootstrap
Posted asgetharytmjxtyk,dxh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 2020/6/06 jquery bootstrap相关的知识,希望对你有一定的参考价值。
操作属性
jsDom.getAttribute(‘class‘);
jsDom.setAttribute(‘class‘,‘add‘);
jsDom.removeAttribute(‘class‘);
jqDom.attr(‘class‘);
jqDom.attr(‘class‘,‘add‘);
jqDom.attr({
‘data‘ : ‘add‘,
‘id‘ : ‘add‘,
...
});
jQDom.removeAttr(‘class‘)
jqDom.addclass(‘del‘)
js找到的是js对象 jquery找到的是jquery对象
相互转 js->jquery $(jsDom)
jquery->js $(‘div‘)[0] $(‘div‘).get(0)
两个对象 jsDom jqDom
操作事件
jsDom.onClick = function(){
this
}
jqDom.click(function(){
$(this)
});
bootstrap 引用别人设置好的样式 改成和设置好的样式一样的class值 class值可以设置多个 在中间加空格就行
以上是关于JS 2020/6/06 jquery bootstrap的主要内容,如果未能解决你的问题,请参考以下文章