ASP.NET MVC – jquery datepicker

前端之家收集整理的这篇文章主要介绍了ASP.NET MVC – jquery datepicker前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
好的,所以我是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" >
原文链接:https://www.f2er.com/aspnet/248943.html

猜你在找的asp.Net相关文章