以span靠右上為例
div 要設定成 position:relative;
span 要設定成 position:absolute;top:0;right:0;
2015年11月25日 星期三
2015年11月5日 星期四
$http.post 使用方式
$http.post('CheckReport/地點列表', { 活動項目id: 8 }
).then(function (result) {
$scope.telLocations = result.data;
}).catch(function (data) {
if (data.status != '') alert(data.statusText);
else alert('發生錯誤,請重新整理頁面後再試一次');
console.log(data.data);
});
).then(function (result) {
$scope.telLocations = result.data;
}).catch(function (data) {
if (data.status != '') alert(data.statusText);
else alert('發生錯誤,請重新整理頁面後再試一次');
console.log(data.data);
});
2015年11月3日 星期二
後端日期型態資料透過 json 丟給前端的 input type=date 綁定 ng-model 無法顯示預設值
前端取得資料後要再轉換成 Date 物件,範例 :
$http.post('CheckReport/查詢').success(function (data, status, headers, config) {
angular.forEach(data, function (obj, key) {
if (obj.shareDate != null) obj.shareDate = new Date(obj.shareDate);
});
$scope.gridOptions.data = data;
}).catch(function (data, status, headers, config) {
if (status != undefined) alert(data.statusText);
console.log(data.data);
});
$http.post('CheckReport/查詢').success(function (data, status, headers, config) {
angular.forEach(data, function (obj, key) {
if (obj.shareDate != null) obj.shareDate = new Date(obj.shareDate);
});
$scope.gridOptions.data = data;
}).catch(function (data, status, headers, config) {
if (status != undefined) alert(data.statusText);
console.log(data.data);
});
訂閱:
文章 (Atom)
input 連結 datalist 用程式控制彈出選項
範例: nextTick(() => document.querySelector('input').showPicker()); ※僅支援現代瀏覽器
-
1. 設定檔案下載儲存位置為 C:\Users\%username%\AppData\Local\Google\Chrome\User Data\Default\Cache 2. 勾選"下載每個檔案前詢問儲存位置" 3. 針對不要下載的檔案類型於第一...
-
自動設定欄寬 sheet.Cells.AutoFitColumns(3, 20); // 必須設定 min 跟 max 才會正常作用 凍結欄位 sheet.View.FreezePanes(4, 4); 標題列 ws.PrinterSettings.RepeatRo...
-
使用 FreeSpire.XLS ... ep.Save(); using (var workbook = new Workbook()) using (var memStream = new MemoryStream()) { workbook.LoadFromSt...