2016年1月28日

[JQuery] 讓textfield 看的到 但不能用

$("input[type=text]").focus(function(){
 this.blur();
 });

[JQuery] on() bind() delegate()

bind(type, [data], fn)

on(type,[selector],[data],fn)


on可以有selector



delegate()可以指定未來元素 取代live()


.on()是最新的1.9版本整合了之前的三種方式的新事件綁定機制

[JQuery] 動態調整字大小 div大小

$("#try2").click(function(){
 
 
      $("#t").css({
   
      height:function(index,value){
        return parseFloat(value)/1.2;
      },
     
        fontSize:function(index,value){
          return parseInt(value)*1.2;
        }
    });
 
 
 
  });


字大小要用parseInt

2016年1月19日

[MAC] 快速鍵

fn+delete

command+上下左右



⌘(Command 鍵):有時稱為「Apple 鍵」。這個鍵在 Apple Keyboard 鍵盤上也有 Apple 標誌 ()

^(Control 鍵)

⌥(Option 鍵):這個按鍵也可能有「Alt」字樣

⇧(Shift 鍵)

⇪(Caps Lock):切換 Caps Lock 開關

Fn (功能鍵):位於可攜式 Mac 內建鍵盤的左下角 



音量微調:shift + option
(調低1/4格:shift + option + F12
調高1/4格:shift + option + F1)

2016年1月15日

[Spring] Resource strings


PrefixExampleExplanation
classpath:classpath:com/myapp/config.xmlLoaded from the classpath.
file:file:/data/config.xmlLoaded as a URL, from the filesystem. [1]
http:http://myserver/logo.pngLoaded as a URL.
(none)/data/config.xmlDepends on the underlying ApplicationContext.

classpath* vs. classpath

classpath只會找package下第一個找到的

classpath*會找到所有的符合條件的 包含jar檔內

一般情況下沒必要用classpath*

2016年1月11日

Eclipse jsp 預設 encoding改為utf8

Windows -> Preferences -> Web -> JSP Files
Select UTF-8 encoding from the *Encoding *dropdown box there.