EasyUI 筆記(1)第一次在專案中使用糾結死了

SieSteven發表於2014-07-09

1.datebox 

html標籤

 <input type="text" id="StartTime" class="easyui-datebox" style="width: 150px;" />

設定為當前時間

$(function () {
            var curr_time = new Date();
            var strDate = curr_time.getFullYear() + "-";
            strDate += curr_time.getMonth() + 1 + "-";
            strDate += curr_time.getDate();//+ "-";
            //strDate += curr_time.getHours() + ":";
            //strDate += curr_time.getMinutes() + ":";
            //strDate += curr_time.getSeconds();
            $("#StartTime").datebox("setValue", strDate);


        });

獲取控制元件中時間

 $("#StartTime").datebox("getValue") 


2.下拉選單


html標籤

 <select id="sk" onchange="changeSK()"></select>

JS函式

 function LoadSK() {
            $.ajax({
                url: "YBZDFWXZPage.aspx?action=loadSK&Random=" + Math.random(),
                type: 'POST',
                success: function (data) {
                    $("#sk").append(data);
                    $("#sk").get(0).selectedIndex = 1;
                }
            });
        }


後臺程式碼

 #region 獲得水庫
        /// <summary>
        /// 獲得水庫
        /// </summary>
        private void LoadSK()
        {
            StringBuilder sbOption = new StringBuilder();
            DataSet ds = _BLL.GetSK();
            if (null != ds && ds.Tables.Count > 0)
            {
                if (null != ds.Tables[0] && ds.Tables[0].Rows.Count > 0)
                {


                    sbOption.Append("<option value=\"-1\">請選水庫</option>");
                    for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
                    {
                        string stcd = ds.Tables[0].Rows[i]["STCD"].ToString();
                        string stnm = ds.Tables[0].Rows[i]["STNM"].ToString();
                        string sttp = ds.Tables[0].Rows[i]["STTP"].ToString();
                        sbOption.Append("<option value=" + stcd + ">" + stnm + "</option>");
                    }
                }
            }
            Response.Write(sbOption);
            Response.End();
        }
        #endregion


以上為最簡單的控制元件使用


相關文章