标签:事件 atom containe lin height var script 公式 tom
公式:$(selector).action() jQuery(选择器).事件()
选择器
(选择器),这里的选择就是css中的选择器
<script>
//原生js选择器,种类少
//标签
doucument.getElementsByTagName();
//id
doucument.getElementById();
//类
doucument.getElementsByClassName();
//jQuery中的选择器 (css)
$(‘a‘).click();
$(‘#id‘).click();
$(‘.class‘).click();
</script>
文档工具站:https://jquery.cuishifeng.cn/,s 使用很频繁
事件
目前电脑上的事件主要分为鼠标事件、键盘事件、其他事件
$(function(){};
//上面是缩写完整版如下
$(document).ready(function(){
});
//因为document和ready都是默认的 所以可以缩写
操作DOM
<div>
<ul id="test_ul"></ul>
<li class="js">JavaScript</li>
<li name="python">Python</li>
</div>
?
节点文本操作
//括号内不写任何东西就是获取值,写引号加数值就是设置修改值
$(‘#test_ul li[name=python]‘).text();
$(‘#test_ul li[name=python]‘).text(‘***‘);
$(‘#test_ul ‘).html();
$(‘#test_ul ‘).html(‘<strong>***</strong>‘);
css操作
$(‘#test_ul li[name=python]‘).css("color","red");
元素的显示和隐藏:本质是display:none;
$(‘#test_ul li[name=python]‘).show()‘‘
$(‘#test_ul li[name=python]‘).hide;
标签:事件 atom containe lin height var script 公式 tom
原文地址:https://www.cnblogs.com/Share-my-life/p/14823769.html