我有一个文字区域。
<label for="add_note">Notes</label>
<textarea name="notes"rows="2" cols="70"><?php if(!empty($this->notes)){ echo $this->notes; } ?>
</textarea>
奇怪的是,当我点击标签或点击文本区域时,光标会转到文本区域的中心而不是文本区域的开头。这是我的代码吗?
答案 0 :(得分:3)
删除空格或尝试使用: -
<label for="add_note">Notes</label>
<textarea name="notes"rows="2" cols="70"><?php if(trim($this->notes)!=''){ echo this->notes; } ?></textarea>