NO IMAGE

jQueryとは・・・
「様々な処理を短く簡単に記述できるjavascriptライブラリ」

で、、、?
何すんの?
流行(?)の「LightBox」も、このjQueryみたい。
LightBoxのsample
*これは、jQueryのプラグインを利用しています。
jQueryを利用するには、jQueryとプラグインの両方のコードをhtmlに、読み込む。

<html>
<head>
<script type=”text/javascript” src=”path/to/jquery.js“></script>
 <script type=”text/javascript” src=”path/to/プラグインやjQuery UIなどの.js“>
<script type=”text/javascript”>
// ここに処理を記述します。
</script>
</head>
<body>
<a href=”http://jquery.com/”>jQuery</a>
</body>
</html>

CSS+htmlカテゴリの最新記事