我的代码有问题.. 我希望在填写长度为10位数的文本框后自动提交。
这是我的javascript代码
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>
$("#idnya").on("input propertychange", function()
{
if($(this).val().length ==15){
$("#max").submit()
}
});
</script>
</script>
这是我的PHP代码
<?php
include "koneksi.php";
echo"
<body>
<form id=max name='cingcing' action='lanjut.php' method='POST'>
<center>
<table>
<tr>
<td colspan=2> <center> id </center> </td>
</tr>
<tr>
<td> id number </td> <td> <input type=password id='idnya' name='idnya2'> </td>
</tr>
</center>
</form>
</body>
";
?>
答案 0 :(得分:6)
在文档准备好之前,页面无法安全操作。&#34;我想你忘记了ready
功能。要检查长度,您可以绑定keyup
事件,如下所示。
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>
$(document).ready(function(){
$("#idnya").on("keyup",function(){
if($(this).val().length == 10){
$("#max").submit();
}
});
});
</script>
答案 1 :(得分:0)
这可能有助于你
<?php
include "koneksi.php";
echo "
<html><head></head>
<body>
<form id=max name='cingcing' action='lanjut.php' method='POST'>
<center>
<table>
<tr>
<td colspan=2> <center> id </center> </td>
</tr>
<tr>
<td> id number </td> <td> <input type=password id='idnya' name='idnya2'> </td>
</tr>
</table>
</center>
</form>
</body>
</html>";
?>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>
$("#idnya").on("input propertychange", function()
{
if ($(this).val().length == 15) {
$("#max").submit()
}
});
</script>
答案 2 :(得分:0)
只需使用此
更改脚本即可
$("#idnya").on("input propertychange", function()
{
if($(this).val().length ==10){
$("#max").submit()
}
});
</script>
答案 3 :(得分:0)
JSFIDDLE演示在这里使用keyup或更改
$("#idnya").keyup(function()
{
if($(this).val().length ==15){
$("#max").submit()
}
});
// OR USE CHANGE它会在您不在焦点时运行
$("#idnya").change(function()
{
if($(this).val().length ==15){
$("#max").submit()
}
});