プログラマーの雑記
普段つまずいたこと、勉強途中の覚え書き
2012年10月9日火曜日
javascript 動的に変数名の値を取得する
eval(数式を示す文字列);
例:
var height = {akane:158,yuka:165,yuka:162};
var name = "yuka";
eval("height." + name ); はheight.yukaの値を取得することができます。
2012年10月4日木曜日
jquery 親要素に対してn番目の子要素を抽出
jquery 親要素に対してn番目の子要素を抽出
例:ul の1番目のli要素を抽出する場合は:
$("ul li:eq(0)").css("background-color", "yellow");
2012年10月3日水曜日
eclipse maven レポジトリを設定
Eclipse IDE, menu bar
Select Window > Preferences
Select Java > Build Path > Classpath Variables
Click on the new button > defined a new
M2_REPO
variable and point it to your local Maven repository
Done.
参考URL:
http://www.mkyong.com/maven/how-to-configure-m2_repo-variable-in-eclipse-ide/
新しい投稿
前の投稿
ホーム
登録:
投稿 (Atom)