<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title></title>
<script src="http://code.jquery.com/jquery-1.11.3.js"></script>
</head>
<body>
<p>元素一</p>
<p>元素二</p>
<p>元素三</p>
<script type="text/javascript">
$p = $(document.getElementsByTagName("p"));
$p.css("color","red");
</script>
</body>
</html>
$p = $(document.getElementsByTagName("p"));这个不是dom对象么。 为什么我下面用jquery方法还有用。我测试了如果上面是jquery对象,下面换成dom操作方法就不能用。。。 还有,jquery对象和dom对象为什么要相互转换?在什么情况下面就需要转换。 求大神为小白解答一下。 感激不尽~~~~
ringa_lee2017-07-05 11:01:54
jquery小白童鞋,http://www.css88.com/jqapi-1.... 建议多看看jquery文档,说的挺明白了,$()
参数如果是dom,那就直接封装成jquery对象,$p是jQuery对象了,自然能用jquery方法,但jquery对象不等同于dom,不能直接使用dom的原生操作,或许你可以通过$p[0]
拿到dom对象~ 建议翻翻文档~