jQuery示例

本文概述

  • $(document).ready()和$()
  • function(){$(“ p”)。css(“ background-color”, “ cyan”); }
jQuery由Google开发。要创建第一个jQuery示例, 你需要使用jQuery的JavaScript文件。你可以从jquery.com下载jQuery文件, 也可以使用jQuery文件的绝对URL。
在此jQuery示例中, 我们使用jQuery文件的绝对URL。 jQuery示例写在script标签内。
让我们看一个简单的jQuery示例。
档案:firstjquery.html
< !DOCTYPE html> < html> < head> < title> First jQuery Example< /title> < script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"> < /script> < script type="text/javascript" language="javascript"> $(document).ready(function() { $("p").css("background-color", "cyan"); }); < /script> < /head> < body> < p> The first paragraph is selected.< /p> < p> The second paragraph is selected.< /p> < p> The third paragraph is selected.< /p> < /body> < /html>

【jQuery示例】立即测试
输出:
选择第一段。
第二段被选中。
第三段被选中。
$(document).ready()和$()当页面准备好执行JavaScript代码时, 插入在$(document).ready()之间的代码仅执行一次。
代替$(document).ready(), 你只能使用缩写形式$()。
$(document).ready(function() { $("p").css("color", "red"); });

上面的代码与此代码等效。
$(function() { $("p").css("color", "red"); });

让我们看一下使用速记符号$()的jQuery的完整示例。
文件:shortjquery.html
< !DOCTYPE html> < html> < head> < title> Second jQuery Example< /title> < script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"> < /script> < script type="text/javascript" language="javascript"> $(function() { $("p").css("color", "red"); }); < /script> < /head> < body> < p> The first paragraph is selected.< /p> < p> The second paragraph is selected.< /p> < p> The third paragraph is selected.< /p> < /body> < /html>

立即测试
输出:
选择第一段。
第二段被选中。
第三段被选中。
function(){$(“ p”)。css(“ background-color”, “ cyan”); }它将所有< p> 标签或段落的背景颜色更改为青色。

    推荐阅读