2012年9月20日 星期四

將文字轉數值 parseInt

$("#draggable").css('top');//320px
parseInt($("#draggable").css('top'));//320

2012年9月19日 星期三

用margin:0 auto 置中 要指定該寬度


margin:0 auto;
width:27px;

//用margin:0 auto 置中 要指定該寬度 而不是指定父層

2012年9月11日 星期二

javascript只取數字 用正規表示


var str=$(".area_product").css('left');//出來會是312px
var reg=/[^\d]+/img;
str=str.replace(reg,"");
alert(str);//出來會是312

2012年9月4日 星期二