0
我有這個功能,我被幫助創建了我的一個大學教授。它通過將#txtNewPassword字段的值解析爲'checkpasslength.php'文件來檢查密碼的長度,該文件處理數據並根據$ .post()中數據的長度/內容返回一個值。 ...我不明白的唯一部分是$ .post()函數的第二個參數... reg.password.value究竟做了什麼?我幾乎知道它做了什麼(在每個按鍵中發送表單內的值),但.reg是什麼意思?
$(document).ready(function() {
$('#checkPassLength').load('checkpasslength.php').show();
$('#txtNewPassword').keyup(function() {
$.post('checkpasslength.php', {password: reg.password.value},
function(result) {
$('#checkPassLength').html(result).show();
});
});
});
'reg'的值是多少? –
哪裏reg來自?? – Neel
在'keyup'方法內使用'console.log(reg)'並找出你自己! –