該顏色、數字數

master
zovjsra 2 years ago
parent 6ca4361e58
commit 04d1eb79ba

@ -186,6 +186,7 @@ li a {
from {
opacity: 0;
}
to {
opacity: 1;
}
@ -202,6 +203,7 @@ li a {
from {
opacity: 1;
}
to {
opacity: 0;
}
@ -260,7 +262,7 @@ li a {
#vis {
display: inline-block;
background-color: aliceblue;
background-color: transparent;
position: relative;
border-radius: 30px;
resize: both;

@ -126,3 +126,10 @@ function switchMessageBox() {
$('#toggleTextBox').html('隱藏文字輸入區')
}
}
function countWords() {
text = $("#rawTextBox").val()
let wordCount = text.split(new RegExp("[\u4e00-\u9fa5]")).length - 1
console.log(wordCount)
$("#wordcount").html('字數:' + wordCount)
}

@ -48,8 +48,9 @@
onclick="showStopwordEditor()">編輯停用詞</button>
</div>
<div id='rawText' class=''>
<div id="wordcount">字數0</div>
<textarea id='rawTextBox' rows=25 placeholder="輸入要視覺化的文字
換行為斷句"></textarea>
換行為斷句" onchange="countWords()"></textarea>
<button class='general-button' style='margin: 10px 0px' onclick="submit()">提交</button>
</div>
<div>

Loading…
Cancel
Save