① js中文本框的焦點事件觸發
onblur()是焦點丟失事件,你如果想在input獲取焦點的時候觸發事件的話應該用onfocus事件
② jquery js 當文本框獲得焦點時,自動選中裡面的文字
$(function(){
$(":text").focus(function(){
this.select();
});
});
③ JS的focus()獲得文本框焦點後,游標位置如何跳到文本末尾
<input type="text" id="test1" name="test1" value="test123" onclick="moveEnd(this);" />
function moveEnd(obj) {
obj.focus();
var len = obj.value.length;
if (document.selection) {
var sel = obj.createTextRange();
sel.moveStart('character', len);
sel.collapse();
sel.select();
} else if (typeof obj.selectionStart == 'number'
&& typeof obj.selectionEnd == 'number') {
obj.selectionStart = obj.selectionEnd = len;
}
}
④ js 怎麼判斷一個文本框是否獲得焦點
//可以用document.activeElement判斷
//document.activeElement表示當前活動的元素
//查找你要判斷的文本框
varmyInput=document.getElementById('myInput');
if(myInput==document.activeElement){
alert('獲取焦點');
}else{
alert('未獲取焦點');
}⑤ javascript中focus()函數作用
focus是獲得焦來點事件。自
當一個文本框獲得焦點時,它裡面的文本就像「好123」網站上的網路搜索輸入框那樣全部被自動選中,這樣的操作可以利用onfocus來實現。
以下的文本框,當滑鼠指針移過去時,裡面的文字全部被選中:
請輸入網址
這是怎麼做的呢?看以下代碼及解釋:
<input type="text"name="url" value="" size="30"onmousemove="this.focus();this.select();">
代碼里,input標簽內嵌入了onmousemove(滑鼠指針經過)事件的JS語句,其等號後面的this.focus()意為其自身獲得焦點;獲得焦點的標志是該文本框內將出現輸入游標,但要讓其內的文字全部被選中,我們還得用上this.select()語句,它的意思就是選中全部文本框里的文字。
⑥ JavaScript中onfocus的用法
onfocus是JavaScript中的一個事件,表示:在對象獲得焦點時發生。
比如輸入框獲得焦點時,輸入框背景變為紅色。示例如下:
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=UTF-8">
<title>JSonfocus用法</title>
<scripttype="text/javascript">
//改變文本框背景顏色
functionchangeStyle(id)
{
document.getElementById(id).style.background="red"
}
</script>
</head>
<body>
輸入內容:<inputtype="text"onfocus="changeStyle(this.id)"id="content"/>
</body>
</html>
運行結果:
⑦ 通過js實現得到焦點時文本框清空,失去焦點時又顯示默認文字,值發生改變時不再恢復默認文字
<input type="text" value="我是默復認制值" onblur="if(this.value==''){this.value='我是默認值'}" onfocus="if(this.value=='我是默認值'){this.value=''}"/>
自己將上面的代碼復制到html文件中.試試.不符合要求的話,自己稍微調整一下.