本サイトのコンテンツには、商品プロモーションが含まれている場合があります。

webネタ

jQueryの最新版を読み込む方法How to load latest jQuery

スポンサーリンク

jQueryの最新版を読み込む方法

■jQueryの最新版のpath
[html ruler="true"]

<script src="http://code.jquery.com/jquery-latest.js"></script>

[/html]

jQueryの最新版を読み込む方法

■jQueryの最新版のpath
[html ruler="true"]

<script src="http://code.jquery.com/jquery-latest.js"></script>

[/html]


スポンサードリンク


■packageも読み込めます。(圧縮されていない状態)

[html]

<script src="http://code.jquery.com/jquery-latest.pack.js"></script>

[/html]

■実際使用するとしたらこっちだと思います。
[html ruler="true"]
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
[/html]

ScriptSrc.netでコピペが楽にできます。

Googleにホストされている各種JSファイルのパスをコピーできるサービス
jQuery google api and other google hosted javascript libraries. - ScriptSrc.net


2012-07-08 ※packageの箇所で間違いのご指摘を頂いたので修正


■packageも読み込めます。(圧縮されていない状態)

[html]

<script src="http://code.jquery.com/jquery-latest.pack.js"></script>

[/html]

■実際使用するとしたらこっちだと思います。
[html ruler="true"]
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
[/html]

ScriptSrc.netでコピペが楽にできます。

Googleにホストされている各種JSファイルのパスをコピーできるサービス
jQuery google api and other google hosted javascript libraries. - ScriptSrc.net

-webネタ