光标指向textarea的中间而不是start

时间:2012-02-29 05:58:51

标签: html textarea

我有一个文字区域。

   <label for="add_note">Notes</label>
        <textarea name="notes"rows="2" cols="70"><?php if(!empty($this->notes)){ echo $this->notes; } ?> 
</textarea>

奇怪的是,当我点击标签或点击文本区域时,光标会转到文本区域的中心而不是文本区域的开头。这是我的代码吗?

1 个答案:

答案 0 :(得分:3)

删除空格或尝试使用: -

<label for="add_note">Notes</label>
<textarea name="notes"rows="2" cols="70"><?php if(trim($this->notes)!=''){ echo this->notes; } ?></textarea>