有時,任務是計算在輸入框或文字區域中輸入的單字數。如果我們想要顯示多行文本,通常會使用文字區域。當文字輸入到文字區域時,使用者可以使用空格作為單字之間或行之間的分隔。本文示範了使用 HTML 和 javascript 程式碼以及 Jquery 函式庫對輸入文字中的單字進行計數的過程。這是透過使用兩個不同的範例來說明的。在第一個範例中,對輸入的空格或換行符進行計數,以查找字數。在第二個範例中,首先將換行符號替換為簡單的空格,然後使用文字分割以空格分割文字以尋找字數。
第 1 步 - 建立一個 HTML 檔案並開始編寫程式碼。
步驟 2 - 製作三個
標籤。給定不同的 id。其中一個將顯示文字。第二個將顯示字數。第三個將顯示字元數。
第 3 步 - 建立一個函數,並在其中使用 for 迴圈開始計算輸入文字中的字元數。檢查是否輸入了空格或換行,然後增加字數計數值。
第 4 步 - 建立一個按鈕並在按一下該按鈕時呼叫上述函數。
第 5 步 - 執行程式以驗證結果。
<!DOCTYPE html> <html> <head> <title>Word Count Example</title> </head> <body> <h1> Count the words written in the text area</h1> <h2>Enter the Text </h2> <textarea id="text11" rows="4" cols="50"></textarea> <button type="button" name="action" onclick="wordcountfunction()">Count Words</button> <p id="paratext" style='white-space:pre'></p> <p id="paracountw"></p> <p id="paracountc"></p> <script> function wordcountfunction(){ var x = document.getElementById("paratext"); var y = document.getElementById("paracountw"); var z = document.getElementById("paracountc"); var testString=document.getElementById("text11").value; var myArray = testString.replace( //g, " " ).split( " " ); if(testString){ x.innerHTML = testString ; }else{ console.log("enter the text in the text area first") } var characterCount = 0; var wordCount = 1; var nn; for (var chr = 0; chr < testString.length; chr++) { nn=testString[chr]; characterCount=characterCount+1; if(nn == ' ' || nn.indexOf("") != -1){ wordCount++; } y.innerHTML = "word Count : " + wordCount ; z.innerHTML = "CHARACTER count : " + characterCount ; document.getElementById("text11").value = ""; } } </script> </body> </html>
要查看結果,請在瀏覽器中開啟 html 檔案。現在點擊按鈕並檢查結果。
第 1 步 - 建立一個 html 檔案並開始編寫程式碼。
步驟 2 - 製作三個
標籤。給定不同的 id。其中一個將顯示文字。第二個將顯示字數。第三個將顯示字元數。
步驟 3 - 建立一個函數並在其中檢查是否有換行符。將其替換為空格。現在,分割空間中的文字並將各部分儲存在陣列中。數組中輸入的字數就是字數。
第 4 步 - 將建立按鈕並在按一下此按鈕時呼叫上述函數。
第 5 步 - 執行程式並顯示結果。
這裡單字被分開放入陣列中。
<!DOCTYPE html> <html> <head> <title>Word Count Example</title> </head> <body> <h1> Count the words by using text Split</h1> <h2>Enter the Text </h2> <textarea id="text11" rows="4" cols="50"></textarea> <button type="button" name="action" onclick="wordcountfunction()">Count Words</button> <p id="paratext" ></p> <p id="paracountw"></p> <p id="paracountc"></p> <script> function wordcountfunction(){ var x = document.getElementById("paratext"); var y = document.getElementById("paracountw"); var z = document.getElementById("paracountc"); var testString=document.getElementById("text11").value; var myArray = testString.replace( //g, " " ).split( " " ); if(testString){ x.innerHTML = "The words entered: " + testString ; }else{ console.log("enter the text in the text area first") } var characterCount=0; var wordCount=1; var n; for (var i = 0; i < testString.length; i++) { n=testString[i]; characterCount=characterCount+1; if(n == ' ' || n.indexOf("") !=-1){ wordCount = wordCount+1; } y.innerHTML = "word Count : " + wordCount ; z.innerHTML = "CHARACTER count : " + characterCount ; document.getElementById("text11").value = ""; } } </script> </body> </html>
要顯示結果,請在瀏覽器中開啟 html 檔案。現在在文字區域中輸入一些行。點選字數統計按鈕可查看字數統計。
在這篇 JavaScript-HTML 文章中,使用兩個不同的範例,給出如何計算在文字區域中輸入的單字數的方法。首先,給出了分析單字之間輸入的空格和輸入的換行以給出字數的方法。在第二個範例中,在將所有換行符號轉換為簡單空格後,對輸入的空格使用文字分割方法。
以上是如何使用 JavaScript 對文字區域進行字數統計?的詳細內容。更多資訊請關注PHP中文網其他相關文章!