请帮我弄清楚我的代码有什么问题。
我有一个输入字段
tr> <td><label>DatePicker</label></td>
<td><input type="text" id="datepicker.test"> </td>
</tr>
我需要根据JQuery中的DatePicker更新它
<script type="text/javascript">
$(document).ready(function(){
$("#datepicker\\.test").datepicker({ showOn : 'both' });
});
</script>
当id名称是“datepickertest”时,它工作正常但是当id名称“datepicker.test”时它不起作用。那时它只显示calandar而不更新输入字段。 请帮我弄清问题是什么。
我使用的是jquery-1.7.2.js,jquery-ui-1.8.22.custom.min.js和jquery-ui-1.8.22.custom.css。 我同时检查了IE和Firefox,但没有工作。
谢谢你, 班达拉