var $inputPswd1 = $('#checkInput01'),
$inputPswd2 = $('#checkInput02'),
$inputPswds = $inputPswd1.add($inputPswd2);
var bindOn = function() {
return typeof $(document)['on'] ? 'on' : 'bind';
}();
$inputPswds[bindOn]('keyup._passchk', function(e){
});
這段代碼寫成輸入的一部分validation.Can誰能告訴一下這些線路做:
typeof $(document)['on']
和
$inputPswds[bindOn]('keyup._passchk', function(e) {});
checkInput01
和checkInput02
是兩個輸入端的ID。
豈不'$ .fn.on? 'on':'bind'會更快嗎? – haim770
最有可能的是,然而代碼的整個點很大程度上是無用的。 –
謝謝麥克羅珊,我真的很感謝你的幫助。 – Aeverlite