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()可以设置元素的内容.
點(diǎn)擊查看更多內(nèi)容
為 TA 點(diǎn)贊
評(píng)論
評(píng)論
共同學(xué)習(xí),寫下你的評(píng)論
評(píng)論加載中...
作者其他優(yōu)質(zhì)文章
正在加載中
感謝您的支持,我會(huì)繼續(xù)努力的~
掃碼打賞,你說(shuō)多少就多少
贊賞金額會(huì)直接到老師賬戶
支付方式
打開(kāi)微信掃一掃,即可進(jìn)行掃碼打賞哦