摘要:
1.主页面传递参数 url: '@Url.Action("WaterLoad")' + '?year=' + year + '&fanwei=' + fanwei, 2.控制器里接收参数 public ActionResult WaterLoad(int year,string fanwei) { 阅读全文
摘要:
1. html <form id="form_search" action="@Url.Action("UpLoadFile")" enctype="multipart/form-data" method="post"> <td> 上传文件:<input class="easyui-filebox" 阅读全文
摘要:
height: height,//"20px" "line-height": height, autosize:true, "text-align": 'center', 阅读全文
摘要:
//切换Tab页 $('#tt').tabs({ border:false, onSelect:function(title){ alert(title+' is selected'); } }); 阅读全文
摘要:
$('#firstfactor').combobox({ url: '@Url.Action("GetMultiAirFactor_Day_New", "UtilManage")' }); 没有定义 valueField和textfield,修改如下 $('#firstfactor').combob 阅读全文
摘要:
<label><input name="Status1" type="radio" value="first" checked="checked" onclick="firstfactorChange()" />篮球</label> <label><input name="Status1" type 阅读全文
摘要:
onClickRow: function (rowIndex, rowData) { dgonClickRow(rowData.oldCityCode,rowData.CITY) } //数据表格单击事件 function dgonClickRow(citycode, cityname) { var 阅读全文
摘要:
1、C#里的SubString String.SubString(int index,int length) index:开始位置,从0开始 length:你要取的子字符串的长度 2、C#语言之“string格式的日期时间字符串转为DateTime类型”的方法 方法一:Convert.ToDateT 阅读全文