判斷 test123 這個資料表是否存在 test 這個資料庫裡
select count(*) as ctable from test..sysobjects where name = 'test123'
2008年11月27日 星期四
2008年11月24日 星期一
2008年11月21日 星期五
jquery取得span的值和把值填入span
//取得span的值
$("span").html()
//把值填入span
$("span").html("test")
//計算所有span的金額
JavaScript:
function count_data(){
var total
$('.class_s').each(function(index){
total = total+ parseFloat($(this).html()); //把所有class為class_s的內容相加
});
$("#sale").html(total); //把值填入span id = sale
}
HTML:
<span class="class_s" id="c1">100<span>
<span class="class_s" id="c2">200<span>
<span class="class_s" id="c3">300<span>
<span class="class_s" id="c4">400<span>
<span id="sale"><span>
$("span").html()
//把值填入span
$("span").html("test")
//計算所有span的金額
JavaScript:
function count_data(){
var total
$('.class_s').each(function(index){
total = total+ parseFloat($(this).html()); //把所有class為class_s的內容相加
});
$("#sale").html(total); //把值填入span id = sale
}
HTML:
<span class="class_s" id="c1">100<span>
<span class="class_s" id="c2">200<span>
<span class="class_s" id="c3">300<span>
<span class="class_s" id="c4">400<span>
<span id="sale"><span>
2008年11月20日 星期四
2008年11月13日 星期四
重設identity
流水號會從1開始,需在table內無資料時使用。
sp_chgattribute '[ TABLE NAME ]', 'identity_burn_max', 0, '0'
example:
EXEC sp_chgattribute testtable, 'identity_burn_max', 0, '0';
sp_chgattribute '[ TABLE NAME ]', 'identity_burn_max', 0, '0'
example:
EXEC sp_chgattribute testtable, 'identity_burn_max', 0, '0';
2008年11月7日 星期五
jQuery table 排序的套件範例
參考網址:http://tablesorter.com/docs/
Include:
Html:
<thead>
<tr id="line">
<th class="{sorter: false}">欄位1</th>
<th>欄位2</th>
<th>欄位3</th>
<th>欄位4</th>
</tr>
</thead>
<tbody>
<tr>
<td>123</td>
<td>345</td>
<td>453</td>
<td>4532</td>
</tr>
<tr>
<td>1232</td>
<td>3454</td>
<td>4533</td>
<td>45</td>
</tr>
</tbody>
</table>
Javascript:
$(document).ready(function(){
//點欄位排序
$("table").tablesorter();
});
Include:
- jquery-1.2.6.min.js
- jquery-latest.js
- jquery.tablesorter.js
- jquery.metadata.js
- <link rel="stylesheet" href="blue/style.css" type="text/css" id="" media="print, projection, screen" />
Html:
- 把 table 的 class 設成 tablesorter
- {sorter: false}:不能排序
<thead>
<tr id="line">
<th class="{sorter: false}">欄位1</th>
<th>欄位2</th>
<th>欄位3</th>
<th>欄位4</th>
</tr>
</thead>
<tbody>
<tr>
<td>123</td>
<td>345</td>
<td>453</td>
<td>4532</td>
</tr>
<tr>
<td>1232</td>
<td>3454</td>
<td>4533</td>
<td>45</td>
</tr>
</tbody>
</table>
Javascript:
$(document).ready(function(){
//點欄位排序
$("table").tablesorter();
});
2008年11月4日 星期二
四捨五入
JavaScript:
MathValue = Math.round(3.14); => 3
MathValue = Math.round(5.15); => 5
//小數點兩位四捨五入:先變整數四捨五入後再除100
MathValue = Math.round(3.1412*100)/100; ==>3.14
MathValue = Math.round(3.14); => 3
MathValue = Math.round(5.15); => 5
//小數點兩位四捨五入:先變整數四捨五入後再除100
MathValue = Math.round(3.1412*100)/100; ==>3.14
訂閱:
文章 (Atom)