我已经通过使用javascript创建输入框并使用jquery将类分配给输入框然后尝试通过使用类名来使用focus()来创建一个html页面,但它根本不起作用。当我单击输入框时,不会弹出警报:(
有谁知道这里出了什么问题?我该如何解决这个问题?
html页面:
<table border="0" width="800">
<tr>
<td align="center">
<div id="test">
</div>
</td>
</tr>
</table>
javascript:
htmlValue = "<input maxlength='4' size='2' type='text' id='startTime_1' value='" + startTime + "' />";
$("#test").html(htmlValue );
$('#startTime_1').addClass('test1');
$('#test1').focus(function () {
alert('inside');
});