<script language="JavaScript">
var isNN = (navigator.appName.indexOf("Netscape") != -1);
document.onkeyup = autoTab;
document.onkeydown = blockEnter;
function autoTab() {
var e = event;
var input = event.srcElement;
var keyCode = (isNN) ? e.which : e.keyCode;
if (keyCode == 13 && input.type!="textarea") {
if (getNextIndex(input) > -1)
input.form[(getNextIndex(input)) % input.form.length].focus();
}
}
function containsElement(arr, ele) {
var found = false, index = 0;
while (!found && index < arr.length)
if (arr[index] == ele)
found = true;
else
index++;
return found;
}
function getNextIndex(input) {
var index = -1, i = 0,j=0, found = false;
while (i < input.form.length && index == -1)
if (input.form[i] == input) {
j = i + 1;
while (j < input.form.length && index == -1) {
if (input.form[j].type == "text" || input.form[j].type == "textarea") index = j;
else j++;
}
return index;
}
else i++;
}
function blockEnter(evt) {
evt = (evt) ? evt : event;
var charCode = (evt.charCode) ? evt.charCode :
((evt.which) ? evt.which : evt.keyCode);
if (charCode == 13) {
var input = event.srcElement;
if (input.type != "textarea") return false;
} else {
return true;
}
}
</script>
2011年3月22日 星期二
訂閱:
文章 (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...