1. Учебник jQuery для начинающих: как создать пример Hello World

2. привет мир 寫法一

https://jquery.com/download/下載

Скачать сжатый производственный jQuery 2.2.0

下載官網 jquery-2.2.0.min.js и hello.html 放在同一個資料夾中

hello.html 內容如下:

— — — — — — — — — — — — — — — — — — — — — —

‹html›
‹head›
‹title›jQuery Hello World
‹/title›
‹script type="text/javascript" src="jquery-2.2.0. min.js”›‹/script›
‹/head›

‹body›
‹script type="text/javascript"›
$(document) .ready(function(){
$("#msgid").html("2. Это Hello World by JQuery");});
‹/script›

1. Это Hello World в формате HTML
‹div id="msgid"›
‹/div›

‹script type="text/javascript"› alert( "3. Привет, мир!");‹/script›
‹/body›
‹/html›

---------------------------

下載點:

https://drive.google.com/file/d/0B1Rs6BoH_52Ud1FVWXc0ZlZnSWM/view?usp=sharing

3. привет мир 寫法二,調用google:

https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js

hello.html 內容如下:

— — — — — — — — — — — — — — — — — — — — —

‹html›
‹head›
‹title›jQuery Hello World
‹/title›
‹script type="text/javascript" src=""https://ajax .googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js»'› ‹/script›
‹/head›

‹body›
‹script type="text/javascript"›
$(document).ready(function(){
$("#msgid").html("2. Это Hello World от JQuery") ;});
‹/script›

1. Это Hello World на HTML
‹div id="msgid"›
‹/div›

‹script type="text/javascript"› alert("3. Привет, мир!");‹/script›
‹/body›
‹/html›

— — — — — — — — — — — — — — — — — — -

下載點:

https://drive.google.com/file/d/0B1Rs6BoH_52UdzRaT1dLX2RDbDA/view?usp=sharing