我想在jQuery手機中的文本框設置焦點。但它不起作用。 這是我的代碼jQuery手機:將重點放在文本框?
<script type="text/javascript">
function FocusOnInput()
{
document.getElementById("username").focus();
}
</script>
,這是我的文本框中。
<input name="username" id="textinput5" type="text">
'$( '#textinput5')專注();'使用jQuery。 – Omar