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

jquery选择器之ID选择器

时间:2017-05-08 23:18:24      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:padding   har   round   height   mooc   选中   匹配   .com   tle   

<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title></title>
<style>
div {
width: 100px;
height: 90px;
float: left;
padding: 5px;
margin: 5px;
background-color: #EEEEEE;
}
</style>
<script src="http://libs.baidu.com/jquery/1.9.1/jquery.js"></script>
</head>

<body>
<div id="aaron">
<p>id="aaron"</p>
<p>选中</p>
</div>
<div id="imooc">
<p>id="imooc"</p>
<p>jQuery选中</p>
</div>
<div id="imooc">
<p>id="imooc"</p>
<p>jQuery未选中</p>
</div>

<script type="text/javascript">
//通过原生方法处理
var div = document.getElementById(‘aaron‘);
div.style.border = "3px solid blue";
</script>

<script type="text/javascript">
//通过jQuery直接传入id
//id的唯一,只选择到了第一个匹配的id为imooc的div节点
?.css("border", "3px solid red");
</script>

</body>

</html>

jquery选择器之ID选择器

标签:padding   har   round   height   mooc   选中   匹配   .com   tle   

原文地址:http://www.cnblogs.com/aivnfjgj/p/6828013.html

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