我正在使用jQuery autosize来调整textarea(Source here)的大小。最近,我发现了一个导致翻页textarea页面跳转的问题,就在Google Chrome上。我已经用firefox和IE进行了测试,看起来没问题。
HTML:
<div id="composer" onclick="callTextBox()"><a>Click to open textarea</a></div>
JS:
function callTextBox(){
$("#composer").prepend("<textarea id="content"></textarea>");
}
$("#composer #content").autosize(); // this is for afterload textBox
我怎么能处理这个?