03-jQuery和JS入口函数的区别
程序员文章站
2024-03-17 16:34:22
...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>03-jQuery和JS入口函数的区别</title>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script>
/* window.onload = function () {
//1.通过原生的JS入口函数可以拿到DOM元素
var img = document.getElementsByTagName("img")[0];
//console.log("img");
//2.通过原生的JS入口函数可以拿到DOM元素的宽高
var width = window.getComputedStyle(img).width;
var height = window.getComputedStyle(img).height;
// console.log(width);
// console.log(height);
}*/
/*原生JS和jQuery入口函数加载模式不同
原生JS会等到DOM元素加载完毕,并且图片也加载完毕后才会执行
jQuery会等到DOM元素记载完毕,但图片没有加载完毕就会执行*/
/*$(document).ready(function(){
//1.通过jQuery入口函数可以拿到DOM元素
// var $img = $('img')[0]; //两种写法
var $img = $("img");
console.log($img);
//2.通过jQuery入口函数不可以拿到DOM元素的宽高
var $width = $img.width();
var $height = $img.height();
console.log("jQuery",$width);
console.log("jQuery",$height);
});*/
/* 1.原生JS如果编写多个入口函数,后面编写的会覆盖前面编写的入口函数
** 2.jQuery中编写多个入口函数,后面的不会覆盖前面
*/
/* window.onload = function () {
alert("woaini1");
}
window.onload = function () {
alert("woaini2");
}*/
$(document).ready(function () {
alert("hello1");
});
$(document).ready(function () {
alert("hello2");
});
</script>
</head>
<body>
<img src="http://pic28.photophoto.cn/20130818/0020033143720852_b.jpg" alt="">
</body>
</html>
上一篇: 部署weblogic 12c时遇到的问题
推荐阅读
-
03-jQuery和JS入口函数的区别
-
JS基础 -- 返回值的类型与函数嵌套的使用和调用
-
JS绑定事件的函数方法—addEventListener()和attachData() 博客分类: JS javascriptaddEventListenerattachDatajs
-
js中for跳出循环(包括多层循环)return和break的区别
-
函数句柄和指针的区别是什么 博客分类: 数据结构 apiwindows数据结构编程
-
js中__proto__和prototype的区别和关系?
-
Spring中拦截/和拦截/*的区别 - 不能访问到返回的JSP - 访问静态资源(jpg,js等) 博客分类: Spring spring/*/404静态资源
-
php中替换字符串函数strtr()和str_repalce()的用法与区别
-
Python中函数eval和ast.literal_eval的区别详解
-
Python中函数eval和ast.literal_eval的区别详解