2012年11月28日水曜日
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 {
// ファイル存在しない
}
if (exists) {
// ファイル存在
} else {
// ファイル存在しない
}
登録:
投稿 (Atom)