我正在使用 jquery ui datepicker。在测试页面上它工作正常。
<div><input type="text" name="basic_example_1" id="basic_example_1" value="" /> </div>
<script>
$('#basic_example_1').datetimepicker();
</script>
但是如果输入字段是通过 ajax 加载的,我应该如何放置脚本?我试过这个
$("#basic_example_1").live("click", function(){
$(this).datetimepicker();
});
不工作。感谢任何提示。