解決 sublime text 2 移除後 無法用新版 開啟檔案問題 (使用攜帶版 portable version)
以系統管理身分叫出 cmd,
在 cmd下, 執行 regedit ,叫出登入檔
找到以下路徑檔案 \HKEY_CLASSES_ROOT\Applications\sublime_text.exe\shell\open\command
改成正確的sublime text 3 執行檔路徑
function DateRate(selectDate){ | |
var ratelist = [{ date: "2018/01/18", rate: "30.11" },{ date: "2018/01/19", rate: "30.12" }]; | |
//print object array | |
console.log(ratelist); | |
var def = $.map(ratelist, function (item, index) { | |
if (item.date == selectDate) { | |
return item.rate; | |
}else { | |
return null; | |
} | |
}); | |
//print def array | |
console.log(def) | |
if(def !== ''){ | |
//print 30.11 | |
$("#ratetxt").val(def[0]); | |
}else { | |
$("#ratetxt").val("no data"); | |
} | |
} |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<script src="https://code.jquery.com/jquery-1.9.1.js"></script> | |
<link href="https://code.jquery.com/ui/1.9.2/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css" /> | |
<script src="https://code.jquery.com/ui/1.9.2/jquery-ui.js"></script> | |
<title>依選擇日期取得對應匯率</title> | |
</head> | |
<body> | |
<h2>依選擇日期取得對應匯率</h2> | |
選擇日期: | |
<input id="ExchangeRateDate" type="text" /> | |
<br/><br/> | |
顯示匯率: | |
<input id="ratetxt" type="text" readonly="readonly"></div> | |
<script id="jsbin-javascript"> | |
function DateRate(selectDate){ | |
var ratelist = [{ date:"2018/01/18", rate:"30.11" }, | |
{ date:"2018/01/19", rate:"30.12" }, | |
{ date:"2018/01/20", rate:"30.13" }]; | |
//print object array | |
console.log(ratelist); | |
var def = $.map(ratelist, function (item, index) { | |
if (item.date == selectDate) { | |
return item.rate; | |
}else { | |
return null; | |
} | |
}); | |
//print def array | |
console.log(def); | |
if(def !== ''){ | |
//print 30.11 | |
$("#ratetxt").val(def[0]); | |
}else { | |
$("#ratetxt").val("no data"); | |
} | |
} | |
$.datepicker.setDefaults($.datepicker.regional["zh-TW"]); | |
$("#ExchangeRateDate").datepicker({ | |
changeYear: true, | |
changeMonth: true, | |
dateFormat: "yy/mm/dd", | |
maxDate: 0, | |
//minDate: "-1m", | |
onSelect: function (dat, inst) { | |
DateRate(dat); | |
} | |
}); | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript"> | |
function DateRate(selectDate){ | |
var ratelist = [{ date:"2018/01/18", rate:"30.11" }, | |
{ date:"2018/01/19", rate:"30.12" }, | |
{ date:"2018/01/20", rate:"30.13" }]; | |
//print object array | |
console.log(ratelist); | |
var def = $.map(ratelist, function (item, index) { | |
if (item.date == selectDate) { | |
return item.rate; | |
}else { | |
return null; | |
} | |
}); | |
//print def array | |
console.log(def); | |
if(def !== ''){ | |
//print 30.11 | |
$("#ratetxt").val(def[0]); | |
}else { | |
$("#ratetxt").val("no data"); | |
} | |
} | |
$.datepicker.setDefaults($.datepicker.regional["zh-TW"]); | |
$("#ExchangeRateDate").datepicker({ | |
changeYear: true, | |
changeMonth: true, | |
dateFormat: "yy/mm/dd", | |
maxDate: 0, | |
//minDate: "-1m", | |
onSelect: function (dat, inst) { | |
DateRate(dat); | |
} | |
}); | |
</script></body> | |
</html> |
function DateRate(selectDate){ | |
var ratelist = [{ date:"2018/01/18", rate:"30.11" }, | |
{ date:"2018/01/19", rate:"30.12" }, | |
{ date:"2018/01/20", rate:"30.13" }]; | |
//print object array | |
console.log(ratelist); | |
var def = $.map(ratelist, function (item, index) { | |
if (item.date == selectDate) { | |
return item.rate; | |
}else { | |
return null; | |
} | |
}); | |
//print def array | |
console.log(def); | |
if(def !== ''){ | |
//print 30.11 | |
$("#ratetxt").val(def[0]); | |
}else { | |
$("#ratetxt").val("no data"); | |
} | |
} | |
$.datepicker.setDefaults($.datepicker.regional["zh-TW"]); | |
$("#ExchangeRateDate").datepicker({ | |
changeYear: true, | |
changeMonth: true, | |
dateFormat: "yy/mm/dd", | |
maxDate: 0, | |
//minDate: "-1m", | |
onSelect: function (dat, inst) { | |
DateRate(dat); | |
} | |
}); |
<asp:UpdatePanel ID="UpdatePanel" runat="server" UpdateMode="Conditional"> | |
<ContentTemplate> | |
<asp:TextBox ID="TextBox" runat="server" OnTextChanged="TextBox_TextChanged" AutoPostBack="true"></asp:TextBox> | |
</ContentTemplate> | |
<Triggers> | |
<asp:AsyncPostBackTrigger ControlID="TextBox" EventName="TextChanged" /> | |
</Triggers> | |
</asp:UpdatePanel> |