jQueryのHTML雛形

HTML内にスクリプト記載の雛形

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="jquery-1.3.2.min.js" type="text/javascript"></script>
<script language="JavaScript">
<!--
/* グローバル変数・関数定義 */

// == DOM Loaded Event
$(function(){

   /* jQueryイベント設定 */

}); // -- End of DOM Loaded Event

-->
</script>
</head>
<body>

</body>
</html>

スクリプトを読み込みの雛形

HTML

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="jquery-1.3.2.min.js" type="text/javascript"></script>
<script src="myprogram.js" type="text/javascript"></script>
</head>
<body>
</body>
</html>

JavaScriptプログラム(myprogram.js)

/* グローバル変数定義 */

/* 関数定義 */

// == DOM Loaded Event
$(function(){

/* ページ作成終了時のイベント定義 */

}); // -- End of DOM Loaded Event

Google jQuery ホスティング

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/jquery-ui.min.js" type="text/javascript"></script>

 


トップ   編集 凍結解除 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: 2010-08-14 (土) 00:13:36 (25d)