06 2018 档案
摘要:filter() 方法将匹配元素集合缩减为匹配指定选择器的元素。例如:改变所有 div 的颜色,然后向类名为 "middle" 的类添加边框:$("div").css("background", "#c8ebcc") .filter(".middle") .css("border-color", "
阅读全文
摘要:FormCollection用来在controller中获取页面表单元素的数据。它是表单元素的集合,包括<input type="submit" />元素。 用法举例: 以下是使用Razor语法的一个表单: [html] view plain copy @using (Html.BeginForm(
阅读全文