<script src="http://www.cnblogs.com/Scripts/jquery-1.4.1-vsdoc.js" type="text/javascript"></script> <script type="text/javascript"> // $(function () { // $("#update").click(function () { // $.ajax({ // type: "post", // url: '<%=Url.Action("UpdateData","Home") %>', // Date: "text", // success: function (mess) { // if (mess != null) { // $("#name").val(mess); // } // } // }); // }); // })
function GetDate() { $.ajax({ type: "post", url: '<%=Url.Action("UpdateData","Home") %>', Date: "text", success: function (mess) { if (mess != null) { $("#name").val(mess); } } }) }; setInterval(GetDate, 100); </script>
//HTML代码
<form id="form1" runat="server"> <div> <input id="name" type="text" name="name" value="" /> </div> </form>
//Controllers中的Action代码
public string UpdateData() { string name = new Random().Next(1000, 100000).ToString(); return name; }
|
请发表评论