使 JavaScript 從使用者那裡獲取 HTML 輸入、進行分析和顯示?
HTML 輸入的值為字串。要將字串轉換為整數,請使用 parseInt()。
示例
以下是程式碼 −
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<body>
<input type="text" id="txtInput" placeholder="Enter a number">
<button type="button" onclick="result();">GetANumber</button>
</body>
<script>
function result() {
var numberValue = document.getElementById("txtInput").value;
if (!isNaN(numberValue))
console.log("The value=" + parseInt(numberValue));
else
console.log("Please enter the integer value..");
}
</script>
</html>要執行上述程式,請儲存檔名“anyName.html(index.html)”。右鍵單擊該檔案,然後在 VS Code 編輯器中選擇“使用 Live Server 開啟”選項。
輸出
這將在控制檯產生以下輸出 −

現在,在文字框中輸入一個值。

現在按按鈕,你將得到以下輸出。
將產生以下輸出 −

控制檯中輸出 −

廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP