Tag: webmatrix

ASP.NET网页(WebMatrix)发布的jQuerypost

我正在尝试使用jQuery提交表单数据。 我正在使用ASP.NET WebMatrix。 在我的.cshtml文件中 @{ // other code if(IsPost) { var item = new Item(); item.Title = Request.Form[“title”]; item.Description = Request.Form[“description”]; // aditional code here } } $(document).ready(function(){ $(“form#itemForm”).submit(function(){ $.post(“form.cshtml”, { title: $(“#title”).val(), description: $(“#description”).val(), price: $(“#price”).val()}, function(data){ }, “json”); }) }); 如何将值从表单传递给Request.Form对象? 而且我怎么能回应json回到html?

在Webmatrix中的JavaScript文件中启用jQuery Intellisense

我在WebMatrix中完成了以下操作。 我在我的HTML页面中导入了jQuery,其中包含jQuery文档,并在HTML script标记内成功启用了jQuery intellisense。 现在我想在我的外部JavaScript文件中启用jQuery intellisense,它将如何工作?