此問題因瀏覽器版本跟使用者電腦而異,所以同一個畫面同一個欄位有的人會遇到有的人不會
<input dont-fill type="tel" class="form-control" />
.directive('dontFill', function () {
return {
restrict: 'A',
link: function link(scope, el, attrs) {
// password fields need one of the same type above it (firefox)
var type = el.attr('type') || 'text';
// chrome tries to act smart by guessing on the name.. so replicate a shadow name
var name = el.attr('name') || '';
var shadowName = name + '_shadow';
// trick the browsers to fill this innocent silhouette
var shadowEl = angular.element('<input type="' + type + '" name="' + shadowName + '" style="display: none">');
// insert before
el.parent()[0].insertBefore(shadowEl[0], el[0]);
}
};
})
2018年11月30日 星期五
訂閱:
張貼留言 (Atom)
vue3-simple-alert 學習心得
官網 顯示提示輸入訊息並於按下確定時檢查是否有輸入,防止未輸入就按確定,且和按取消用不同邏輯處理 VueSimpleAlert.fire({ title: '請輸入原因', input: 'text', showCancel...
-
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...
沒有留言:
張貼留言