15 lines
522 B
JavaScript
15 lines
522 B
JavaScript
// --- static/utils.js ---
|
||
|
||
// 加上 export,讓其他檔案可以使用這個函數
|
||
export function getGlobalConnectionInfo() {
|
||
const host = document.getElementById('cmtsHost').value.trim();
|
||
const user = document.getElementById('cmtsUser').value.trim();
|
||
const pass = document.getElementById('cmtsPass').value.trim();
|
||
|
||
if (!host || !user || !pass) {
|
||
alert("請在畫面上方完整輸入目標設備的 IP、帳號與密碼!");
|
||
return null;
|
||
}
|
||
return { host, user, pass };
|
||
}
|