Chrome工具提示在textarea update

时间:2016-10-31 19:06:36

标签: javascript google-chrome

尝试弄清楚如何解决Chrome的问题,其中工具提示正在消失,或者在更新页面的其他区域时根本不会显示。它在Firefox中运行良好。只要textarea滚动工具提示就会消失。

以下是一些用于演示此问题的代码:

function add_to_log(msg) {
  the_log = document.getElementById("log-area");
  the_log.value += msg;
  the_log.scrollTop = the_log.scrollHeight
}
var counter = 0;
window.onload = function() {
  setInterval(function() {
    add_to_log(counter+++"\n")
  }, 2000);
}
* {
  margin: 20px;
}
<textarea id="log-area" style="height:40px; width:80px; float:left; "></textarea>
<a title="test tooltip" style="float:left;">mouse over this</a>

0 个答案:

没有答案