用函数计算每个单词的数量

时间:2018-01-29 21:45:43

标签: javascript

python/libs/

如何制作一个计算每个单词数量的函数?

然后浏览第1部分中的每个元素,对于每个单词,我将在“word []”中找到该单词的位置

第1部分:     

<body>

 <textarea name="text" id="text" cols="30" rows="10"></textarea>
 <button id="button">Click</button>


 <script src="script.js"></script>
</body>    

第2部分:

 var txt = document.getElementById("text");
 var btn = document.getElementById("button");

 var array;

 btn.addEventListener("click", getText);

 function getText(){
    array = txt.value.split(/[\n <>.,\?]/);
    console.log(array);
}

1 个答案:

答案 0 :(得分:-1)

 var txt = document.getElementById("text");
 var btn = document.getElementById("button");

 btn.addEventListener("click", getText);

 function getText(){
    var words = txt.value.split(/[\n <>.,\?]/);
    console.log(words);

    var wordCount = words.length;
    console.log(wordCount);
}

words已经是word[],为了获得words中的Array金额,只需要words.length,然后就可以了我会在values

中为您提供多个Array