特定のdivコンテンツを変更するajaxページを書きました。その中で、ajaxコードはテキストボックスを作成します。 この関数を呼び出した後で、そのテキストボックスに注目したいと思います。関数は、AJAX-production.php 上ajaxによって作成されたテキストボックスに焦点を合わせます
function addnewitem5()
{
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("aa433").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","ajax-production.php?type=sales",true);
xmlhttp.send();
}
として呼び出されますボタンをクリックすると上のコードでは、私はそのテキストボックスに集中することができますどのようにちょうど
<?php echo '<input type="text" name="barcode" id="barcode"/>';?>
のですか?あなたは、テキストボックスにフォーカスを設定することができ、このことにより、.focus()
document.getElementById("aa433").innerHTML=xmlhttp.responseText;
document.getElementById("barcode").focus();
Whtsはこれを投票するのに間違っていますか? – Sarath