作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试编写一个函数来计算一段文本中的音节数,我知道它不会那么准确,这只是我目前需要的一个简单版本,它可以粗略地计算音节数。
whenkeydown = function(max_length) {
$("#my_text").unbind().keyup(function() {
//check if the appropriate text area is being typed into
if (document.activeElement.id === "my_text") {
//get the data in the field
var text = $(this).val();
function countSyllables(words) {
console.log(words);
for (var z; z < words.length; z++) {
word = word[z].toLowerCase();
if(word.length <= 3) { return 1; }
word = word.replace(/(?:[^laeiouy]es|ed|[^laeiouy]e)$/, '');
word = word.replace(/^y/, '');
syllables = word.match(/[aeiouy]{1,2}/g).length;
syllableCount += syllabes
}
return syllableCount
}
var syllableCount = countSyllables(text)
$("#noOfSyllables").html("").html(syllableCount).css("color", "#F7860C"); //orange
我在(aptana/firefox)调试器中遇到的错误是“TypeError: $(...).html(...).html(...).css is not a function”,这是否意味着我的函数没有返回任何内容?
最佳答案
您的变量syllableCount
从未在您的函数countSyllables
中设置。
我希望看到 var syllableCount = 0;
function countSyllables(words) {
var syllableCount = 0;
...
第二期。
您将 text() 视为返回数组。它是一个单字符串。
关于JavaScript: "TypeError: $(...).html(...).html(...).css is not a function",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13566231/
我是一名优秀的程序员,十分优秀!