編集用 > 覚え書き > jQueryとかについて

jQueryとかを使う準備

#include_js(http://code.jquery.com/jquery-2.1.4.min.js)
#include_js(http://code.jquery.com/ui/1.11.4/jquery-ui.min.js)
 
#javascript(){{
 
document.write('<link type="text/css" rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/cupertino/jquery-ui.css" />')
 
 
●ここにいろいろ書いていく●
 
}}
 
 
これでjQueryとかUIとか使う準備が出来ました。

jQueryを使う方法

jQuery( function() {
    jQuery( 'セレクタ' ) .メソッド();
} );
 
 
最終更新:2015年06月28日 01:58