2012年11月12日月曜日

jquery 重なった要素のonclickイベントとmouseoverイベント の中断


Use "event.stopPropagation()" to stop the events from bubbling upwards:
  jQuery('#menu li a').mouseover( function(evt) {
       evt.stopPropagation();
       return false;
  });
  jQuery('#menu li a').mouseout( function(evt) {
       evt.stopPropagation();
       return false;
  });
参考リンク

2012年10月29日月曜日

java ファイル存在判断

boolean exists = (new File("filename")).exists();
 if (exists) { 
    // ファイル存在
} else {
  // ファイル存在しない
}

java 16進数から色へ変換 関数

// Hex to color 16進数から色へ変換 
int intValue = Integer.parseInt( "ff0000",16);
Color aColor = new Color( intValue );

// Color to hex 色は16進数へ変換
String hexStr = Integer.toHexString( aColor.getRGB() );