在使用yui compressor時遇到編譯失敗的問題,可透過Google closure compiler:http://closure-compiler.appspot.com/home找到檔案為何無法正確編譯(但js與css能正常於網站執行),錯誤的問題不外乎是語法不嚴僅,如使用到保留字等等。
星期四, 8月 30, 2012
[Regex] 找出不包含特定字的結果 don't contain specified word
http://www.anydotcom.com/test/search.cfm?metric=blah&selector=size&value=1
http://www.anydotcom.com/test/search.cfm?metric=blah2&selector=style&value=1
http://www.anydotcom.com/test/search.cfm?metric=blah3&selector=size&value=1
http://www.anydotcom.com/test/details.cfm?metric=blah&selector=size&value=1
找出不包含details.cfm這個字的
(^((?!details.cfm).)*$)
Reference:
星期一, 8月 27, 2012
[jQuery Plugin] Textbox Mask
蠻屌的TEXTBOX Mask效果 XD
Reference:
http://digitalbush.com/projects/masked-input-plugin/#demo
Reference:
http://digitalbush.com/projects/masked-input-plugin/#demo
星期六, 8月 25, 2012
星期日, 8月 05, 2012
[Java] Jersey @DefaultValue
有時候你的參數是選項輸入的,即可使用 @DefaultValue
public String getOwnerQuoteList( @PathParam(value="OWP_ID") String OWP_ID, @DefaultValue("1") @QueryParam(value="page") int pageIndex, @DefaultValue("10") @QueryParam(value="size") int pageSize, @DefaultValue("dateline")@QueryParam(value="sort") String sort, @DefaultValue("false") @QueryParam(value="asc") boolean asc) throws JSONException{ }
星期六, 8月 04, 2012
[jQuery] $.ajax 讀取影像
似乎不需要弄$.ajax也可以達到這個需求XD
Reference:
var img = $("#imgElem").attr('src', 'http://somedomain.com/image.jpg') .load(function() { if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) { alert('broken image!'); } else { $("#something").append(img); } });
Reference:
星期三, 8月 01, 2012
[Java] 快快樂樂使用 Jersey MVC 架構
先前利用jersey都只有在controller端直接將JSON物件轉成字串輸出,
jersey也提供MVC的方式來支援JSP來做template(View)
讓畫ui結構更直覺多了。
jersey也提供MVC的方式來支援JSP來做template(View)
讓畫ui結構更直覺多了。
訂閱:
文章 (Atom)