作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
加载 html 页面后,调用 checkTweetLength 函数。此函数旨在更新文本区域中键入的字符数。但此函数不会更新 html 页面,因为它在页面加载期间仅运行一次。如何让这个函数动态更新html页面?
// JavaScript Document
window.onload = function(){
checkTweetLength();
};
function checkTweetLength() {
var tweet = document.getElementById("tweet_entered");
if(tweet.value.length > 140) {
//alert('Hey');
document.getElementById("tweet_length").innerHTML = tweet.value.length - 140;
}else {
//alert('else block');
document.getElementById("tweet_length").innerHTML = tweet.value.length;
}
}
最佳答案
document.getElementById("tweet_entered").onKeyUp = checkTweetLength;
关于javascript - 如何让函数动态更新html?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23532540/
我是一名优秀的程序员,十分优秀!