我想在我的 asp.net 应用程序中使用 jquery datepicker 但它不起作用
在我的项目中是带有 Calender.ico 的文件夹(图像)
这是我在master.master中的代码:
<script>
$(function () {
$("#txtVon").datepicker({
showOn: 'button',
buttonImage: '/images/Calender.ico',
buttonImageOnly: true,
dateFormat: "mm-dd-yy"
});
});
</script>
这是我在 createuser.aspx 中的代码
<asp:TextBox ID="txtVon" runat="server" ReadOnly="True" ></asp:TextBox>
我怎么弄错了?我没有看到图标