标签:normal html模板 lan 常用 代码 com link utf-8 charset
每次测试都需要写jQuery引用,所以创建一些常用代码,方便测试:
CDN
<script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script>
HTML模板(引用jQuery)
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <link href="https://cdn.bootcss.com/normalize/8.0.0/normalize.min.css" rel="stylesheet"> <script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script> <style> </style> <script> </script> </head> <body> <div> </div> <script> $(function(){ }); </script> </body> </html>
标签:normal html模板 lan 常用 代码 com link utf-8 charset
原文地址:https://www.cnblogs.com/slwangzi/p/9304648.html