其他分享
首页 > 其他分享> > jQuery-初识jQuery

jQuery-初识jQuery

作者:互联网

看此文章前必须先掌握JavaScript

JQuery 是什么?

如何使用JQuery?

window.onload = function (ev) { 
	alert("hello word"); }   
$(document).ready(function () {
    alert("hello word");
});


体验 JQuery

window.onload = function () {
  var div1 = document.getElementsByTagName("div")[0];
  var div2 = document.getElementsByClassName("div2")[0];
  var div3 = document.getElementById("div3");
  div1.style.backgroundColor = "red";
  div2.style.backgroundColor = "green";
  div3.style.backgroundColor = "yellow";
};
$(function () {
  var $div1 = $("div");
  var $div2 = $(".div2");
  var $div3 = $("#div3");
  $div1.css({
    backgroundColor: "red",
    width: "200px",
    height: "300px",
  });
  $div2.css({
    backgroundColor: "green",
  });
  $div3.css({
    backgroundColor: "yellow",
  });
});

为什么要使用 JQuery?


如何使用jQuery?

<head>
    <meta charset="UTF-8">
    <title>01-初识jQuery</title>
    <script src="code/js/jquery-1.12.4.js"></script>
</head>
<script>
    $(document).ready(function () {
      // 所有jQuery代码写在这里面
         alert("hello LNJ");
    });
</script>

标签:jQuery,function,初识,backgroundColor,var,div,document
来源: https://blog.csdn.net/qq_43812731/article/details/119221261