Changes to JS code for deciding on band
这个提交包含在:
父节点
510af39f5c
当前提交
115eccdfe3
共有 1 个文件被更改,包括 44 次插入 和 44 次删除
|
|
@ -297,43 +297,43 @@
|
||||||
// Get frequency
|
// Get frequency
|
||||||
$.get('radio/frequency/' + $('select.radios option:selected').val(), function(result) {
|
$.get('radio/frequency/' + $('select.radios option:selected').val(), function(result) {
|
||||||
$('#frequency').val(result);
|
$('#frequency').val(result);
|
||||||
if(result >= "100000" && result <= "200000") {
|
|
||||||
$(".band").val('160m');
|
|
||||||
}
|
|
||||||
if(result >= "300000" && result <= "400000") {
|
|
||||||
$(".band").val('80m');
|
|
||||||
}
|
|
||||||
if(result >= "525000" && result <= "54500") {
|
|
||||||
$(".band").val('60m');
|
|
||||||
}
|
|
||||||
if(result >= "700000" && result <= "750000") {
|
|
||||||
$(".band").val('40m');
|
|
||||||
}
|
|
||||||
if(result >= "1000000" && result <= "110000") {
|
|
||||||
$(".band").val('30m');
|
|
||||||
}
|
|
||||||
if(result >= "1400000" && result <= "1440000") {
|
if(result >= "1400000" && result <= "1440000") {
|
||||||
$(".band").val('20m');
|
$(".band").val('20m');
|
||||||
}
|
}
|
||||||
if(result >= "1800000" && result <= "1900000") {
|
else if(result >= "1800000" && result <= "1900000") {
|
||||||
$(".band").val('17m');
|
$(".band").val('17m');
|
||||||
}
|
}
|
||||||
if(result >= "2100000" && result <= "2160000") {
|
else if(result >= "181000" && result <= "200000") {
|
||||||
|
$(".band").val('160m');
|
||||||
|
}
|
||||||
|
else if(result >= "300000" && result <= "400000") {
|
||||||
|
$(".band").val('80m');
|
||||||
|
}
|
||||||
|
else if(result >= "525000" && result <= "54500") {
|
||||||
|
$(".band").val('60m');
|
||||||
|
}
|
||||||
|
else if(result >= "700000" && result <= "750000") {
|
||||||
|
$(".band").val('40m');
|
||||||
|
}
|
||||||
|
else if(result >= "1000000" && result <= "110000") {
|
||||||
|
$(".band").val('30m');
|
||||||
|
}
|
||||||
|
else if(result >= "2100000" && result <= "2160000") {
|
||||||
$(".band").val('15m');
|
$(".band").val('15m');
|
||||||
}
|
}
|
||||||
if(result >= "2400000" && result <= "2500000") {
|
else if(result >= "2400000" && result <= "2500000") {
|
||||||
$(".band").val('12m');
|
$(".band").val('12m');
|
||||||
}
|
}
|
||||||
if(result >= "2800000" && result <= "3000000") {
|
else if(result >= "2800000" && result <= "3000000") {
|
||||||
$(".band").val('10m');
|
$(".band").val('10m');
|
||||||
}
|
}
|
||||||
if(result >= "5000000" && result <= "5600000") {
|
else if(result >= "5000000" && result <= "5600000") {
|
||||||
$(".band").val('6m');
|
$(".band").val('6m');
|
||||||
}
|
}
|
||||||
if(result >= "14400000" && result <= "14700000") {
|
else if(result >= "14400000" && result <= "14700000") {
|
||||||
$(".band").val('2m');
|
$(".band").val('2m');
|
||||||
}
|
}
|
||||||
if(result >= "43000000" && result <= "44000000") {
|
else if(result >= "43000000" && result <= "44000000") {
|
||||||
$(".band").val('70cm');
|
$(".band").val('70cm');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
@ -356,43 +356,43 @@
|
||||||
// Get frequency
|
// Get frequency
|
||||||
$.get('radio/frequency/' + $('select.radios option:selected').val(), function(result) {
|
$.get('radio/frequency/' + $('select.radios option:selected').val(), function(result) {
|
||||||
$('#frequency').val(result);
|
$('#frequency').val(result);
|
||||||
if(result >= "100000" && result <= "200000") {
|
|
||||||
$(".band").val('160m');
|
|
||||||
}
|
|
||||||
if(result >= "300000" && result <= "400000") {
|
|
||||||
$(".band").val('80m');
|
|
||||||
}
|
|
||||||
if(result >= "525000" && result <= "54500") {
|
|
||||||
$(".band").val('60m');
|
|
||||||
}
|
|
||||||
if(result >= "700000" && result <= "750000") {
|
|
||||||
$(".band").val('40m');
|
|
||||||
}
|
|
||||||
if(result >= "1000000" && result <= "110000") {
|
|
||||||
$(".band").val('30m');
|
|
||||||
}
|
|
||||||
if(result >= "1400000" && result <= "1440000") {
|
if(result >= "1400000" && result <= "1440000") {
|
||||||
$(".band").val('20m');
|
$(".band").val('20m');
|
||||||
}
|
}
|
||||||
if(result >= "1800000" && result <= "1900000") {
|
else if(result >= "1800000" && result <= "1900000") {
|
||||||
$(".band").val('17m');
|
$(".band").val('17m');
|
||||||
}
|
}
|
||||||
if(result >= "2100000" && result <= "2160000") {
|
else if(result >= "181000" && result <= "200000") {
|
||||||
|
$(".band").val('160m');
|
||||||
|
}
|
||||||
|
else if(result >= "300000" && result <= "400000") {
|
||||||
|
$(".band").val('80m');
|
||||||
|
}
|
||||||
|
else if(result >= "525000" && result <= "54500") {
|
||||||
|
$(".band").val('60m');
|
||||||
|
}
|
||||||
|
else if(result >= "700000" && result <= "750000") {
|
||||||
|
$(".band").val('40m');
|
||||||
|
}
|
||||||
|
else if(result >= "1000000" && result <= "110000") {
|
||||||
|
$(".band").val('30m');
|
||||||
|
}
|
||||||
|
else if(result >= "2100000" && result <= "2160000") {
|
||||||
$(".band").val('15m');
|
$(".band").val('15m');
|
||||||
}
|
}
|
||||||
if(result >= "2400000" && result <= "2500000") {
|
else if(result >= "2400000" && result <= "2500000") {
|
||||||
$(".band").val('12m');
|
$(".band").val('12m');
|
||||||
}
|
}
|
||||||
if(result >= "2800000" && result <= "3000000") {
|
else if(result >= "2800000" && result <= "3000000") {
|
||||||
$(".band").val('10m');
|
$(".band").val('10m');
|
||||||
}
|
}
|
||||||
if(result >= "5000000" && result <= "5600000") {
|
else if(result >= "5000000" && result <= "5600000") {
|
||||||
$(".band").val('6m');
|
$(".band").val('6m');
|
||||||
}
|
}
|
||||||
if(result >= "14400000" && result <= "14700000") {
|
else if(result >= "14400000" && result <= "14700000") {
|
||||||
$(".band").val('2m');
|
$(".band").val('2m');
|
||||||
}
|
}
|
||||||
if(result >= "43000000" && result <= "44000000") {
|
else if(result >= "43000000" && result <= "44000000") {
|
||||||
$(".band").val('70cm');
|
$(".band").val('70cm');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用