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');
});