2015年4月22日 星期三

textarea focus 在最後面

textarea有一串定型字串與提示字串
focus之後要移掉提示字串但是游標要在最後面
原本
$("#textarea").focus(function () {
if( $(this).val()=='定型字串:(提示字串)')
             $(this).val('定型字串');
});

結果效果變成focus後游標會跑到最前面去
改用jquery的focusin事件就解決了
$("#textarea").focusin(function () {
if( $(this).val()=='定型字串:(提示字串)')
             $(this).val('定型字串');
});

沒有留言:

張貼留言