jQuery开始之旅

Posted mb61bc2ba16eece

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery开始之旅相关的知识,希望对你有一定的参考价值。


(1)首先到​​http://jquery.com/download/​​网站进行现在jQuery库。

(2)这里演示一下,使用CDN进行jQuery编程的例子:

选择的是jQuery的CDN,<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>


<?php
echo "Use JQuery!!!".<br>;
?>
<html>
<head></head>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script>
function show()

$(document).ready(function()
alert("Happy coding!!!");
)

</script>
<body>
<div onclick="show()">JQuery</div>
</body>
</html>


 (3)下载​​Download the compressed, production jQuery 2.0.3​​下载jquery-2.0.3.min.js文件到本地。


<?php
echo "Use JQuery!!!".<br>;
?>
<html>
<head></head>
<script src="http://localhost/jquery-2.0.3.min.js"></script> // 包含本地的jQuery.js文件
<script>
function show()

$(document).ready(function()
alert("Happy coding in fun, every day!!!");
)

</script>
<body>
<div onclick="show()">JQuery</div>
</body>
</html>


这里同样也可以方便的使用jQuery了。




以上是关于jQuery开始之旅的主要内容,如果未能解决你的问题,请参考以下文章

jQuery开始之旅

Unity Shader入门精要学习笔记 - 第5章 开始 Unity Shader 学习之旅

我的Android进阶之旅NDK开发之在C++代码中使用Android Log打印日志,打印出C++的函数耗时以及代码片段耗时详情

Kotlin学习之旅解决错误:kotlin.NotImplementedError: An operation is not implemented: Not yet implemented(代码片段

我的C语言学习进阶之旅解决 Visual Studio 2019 报错:错误 C4996 ‘fscanf‘: This function or variable may be unsafe.(代码片段

我的C语言学习进阶之旅解决 Visual Studio 2019 报错:错误 C4996 ‘fscanf‘: This function or variable may be unsafe.(代码片段