好的,所以我是ASP.NET MVC和
JQuery的新手.
我已经按照以下示例写了这封信,而且我无法让datepicker工作:
http://codesprouts.com/post/Creating-A-DatePicker-Extension-In-ASPNet-MVC.aspx
任何人都可以告诉我是否有任何蜱或陷阱吗?
伯纳德.
解决方法
使用谷歌托管的jquery.
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"> </script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/jquery-ui.min.js"> </script>
您还需要链接到您想要的CSS.
$().ready(function() { $('#from').datepicker({ dateFormat:'yy-mm-dd' }); }); <html> ... <input id="from" class="date-field" name="from" type="text" >