1.加载DOM区别
JavaScript:
window.onload = first;
window.onload = second;
只会执行第二个window.onload
jQuery:
$(document).ready(function(){
first();
}
$(document).ready(function(){
first();
}
2.获取ID
JavaScript:
document.getElement("idName")
jQuery:
$("#idName")
3.获取Class
JavaScript:
无明确方法
jQuery:
$(".className")
4.获取元素
JavaScript:
document.getElementsByTagName("tagName")
jQuery:
$("tagName")
5.创建对象并加入文档中
JavaScript:
var elem = document.createElement("p")
document.body.appendElement(elem)
jQuery:
$("div").append("<span>里约奥运</span>")
时间: 2024-12-06 05:18:58