1 jQuery
jQuery是一个js库,一个js文件,极大地简化了编程,官网链接在这里,有compressed,uncompressed版本,使用时一样.
2 hello world
<html>
<head>
<title>jquery hello world</title>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script type="text/javascript">
$(function()
{
$("p").html("hello world");
});
</script>
</head>
<body>
<p></p>
</body>
</html>
jQuery使用时直接从官网引入文件即可,这里用的是3.4.1版本.
$(function())
是
$(document).ready(function(){})
的缩写,这个函数会在DOM加载完成后执行.
$("p")
表示选择页面的所有<p>元素,html()可以设置元素的内容.
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦