我正在尝试获取密码的长度,因此如果密码太短,我会阻止提交表单。这是怎么做到的?
这就是我现在正在尝试的:
$('#registerForm input[type="password"]').val.length
我正在尝试获取密码的长度,因此如果密码太短,我会阻止提交表单。这是怎么做到的?
这就是我现在正在尝试的:
$('#registerForm input[type="password"]').val.length
val
是一个函数,所以你需要写val()
:
$('#registerForm input[type="password"]').val().length
你可以加个id<input id="pw" type="password">
$('#pw').val().length;
或者您可以添加一个类<input class="pw" type="password">
$('.pw').val().length;
否则保持原样,您可以使用 jquery 获取长度
$('#registerForm input[type="password"]').val().length;
希望这会帮助你。如果您有任何问题,请随时提问。谢谢
您需要val
作为一个函数进行评估。
$('#registerForm input[type="password"]').val().length
你可以做得到$('#txtbox').val().length;
长度
使用这个你的代码中有一些错误
$('#registerForm input[type="password"]').val().length