//==================================================
// 更新驗證碼
//
function renewChkCode_() {
var d = new Date(), img='', txt='';
if ($('.imgChkCode').length) {
$('.imgChkCode').prop('src', wdbPath+'/images/progress.gif');
setTimeout(function(){
$('.imgChkCode').prop('src', wdbPath+'/chkcode.php?rseed='+d.getTime());
$('.chkcode').val('');
}, 100);
}
}