जवाबों:
आपके प्रश्न के दो भाग हैं।
1) पेज लोड पर इनपुट कैसे केंद्रित करें?
आप autofocus
इनपुट में केवल विशेषता जोड़ सकते हैं ।
<input id="myinputbox" type="text" autofocus>
हालाँकि, यह सभी ब्राउज़रों में समर्थित नहीं हो सकता है, इसलिए हम जावास्क्रिप्ट का उपयोग कर सकते हैं।
window.onload = function() {
var input = document.getElementById("myinputbox").focus();
}
2) इनपुट टेक्स्ट के अंत में कर्सर कैसे रखें?
यहाँ एक गैर- jQuery समाधान है तो दूसरे SO उत्तर से कुछ उधार कोड के साथ ।
function placeCursorAtEnd() {
if (this.setSelectionRange) {
// Double the length because Opera is inconsistent about
// whether a carriage return is one character or two.
var len = this.value.length * 2;
this.setSelectionRange(len, len);
} else {
// This might work for browsers without setSelectionRange support.
this.value = this.value;
}
if (this.nodeName === "TEXTAREA") {
// This will scroll a textarea to the bottom if needed
this.scrollTop = 999999;
}
};
window.onload = function() {
var input = document.getElementById("myinputbox");
if (obj.addEventListener) {
obj.addEventListener("focus", placeCursorAtEnd, false);
} else if (obj.attachEvent) {
obj.attachEvent('onfocus', placeCursorAtEnd);
}
input.focus();
}
यहाँ एक उदाहरण है कि मैं इसे jQuery के साथ कैसे पूरा करूँगा।
<input type="text" autofocus>
<script>
$(function() {
$("[autofocus]").on("focus", function() {
if (this.setSelectionRange) {
var len = this.value.length * 2;
this.setSelectionRange(len, len);
} else {
this.value = this.value;
}
this.scrollTop = 999999;
}).focus();
});
</script>
बस एक सिर - आप इसे समर्थन करने वाले ब्राउज़र के लिए जावास्क्रिप्ट के बिना HTML5 के साथ अब कर सकते हैं:
<input type="text" autofocus>
आप संभवतः इसके साथ शुरुआत करना चाहते हैं और पुराने ब्राउज़रों के लिए एक कमबैक प्रदान करने के लिए इसे जावास्क्रिप्ट के साथ बनाना चाहते हैं।
$(document).ready(function() {
$('#id').focus();
});
ऐसा करने का एक पोर्टेबल तरीका की तरह (संभाल ब्राउज़र मतभेद के) एक कस्टम समारोह उपयोग कर रहा है यह एक ।
फिर onload
अपने <body>
टैग के अंत में हैंडलर सेटअप करें , जैसा कि जेसगेविन ने लिखा है:
window.onload = function() {
document.getElementById("myinputbox").focus();
}
अच्छा कर रहा है...
window.onload = function() {
var input = document.getElementById("myinputbox").focus();
}
यह मेरे लिए ठीक काम करता है:
<form name="f" action="/search">
<input name="q" onfocus="fff=1" />
</form>
fff एक वैश्विक वैरिएबल होगा जिसका नाम बिलकुल अप्रासंगिक है और जिसका उद्देश्य उस इनपुट में फ़ोकस करने के लिए जेनेरिक ऑनलोड घटना को रोकना होगा।
<body onload="if(!this.fff)document.f.q.focus();">
<!-- ... the rest of the page ... -->
</body>
प्रेषक: http://webreflection.blogspot.com.br/2009/06/inputfocus-something-really-annoying.html