精選文章

bcp大量匯出與匯入資料庫資料方法

--匯出-- bcp "select * from [資料庫名稱].[dbo].[資料表名稱]" queryout 匯出檔案名稱.txt -w -U "使用者帳號" -P "使用者密碼" " "...

2018年9月13日 星期四

jQuery簡化ready()寫法

方法1
$(document).ready(function () {
             code..
});
方法2
$().ready(function () {
             code..
});
方法3
$(function () {
             code..
});