<!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對象~ 建議翻翻文件~