【博客園cnblogs筆者m-yb原創,轉載請加本文博客鏈接,筆者github: https://github.com/mayangbo666,公眾號aandb7,QQ群927113708】
https://www.cnblogs.com/m-yb/p/10075717.html
js可以用引入cdn替代引入js本地文件的方式, 使用一些js工具;
引入某個工具的cdn可以遠程使用到js工具的函數/特性;
今天博主在寫一個html引入jquery的cdn時,
比如引入這個站點的cdn:
staticfile // 站點
網站提供的是這樣的:
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js">
</script>
但是博主寫成了這樣:
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js" />
發現本來能用的jquery js函數不能使用了,
希望大家能注意到這點.
最后, 貼代碼, 樓主對前端不熟, 大家不要噴我.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>test-mayangbo666(github.com)</title>
</head>
<body>
<p>如果你點我, 我就會消失</p>
<p>繼續點我</p>
<p>接着點我</p>
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script>
<script>
$(function () {
$('p').click(function () {
$(this).hide();
})
})
</script>
</body>
</html>

