サーバーDisplay.php、t2.php、およびupdate.phpに3つのファイルをアップロードしたドラッグアンドドロップモジュールを実装しようとしています:
t2.php はhttp://www.script.iblogger.org/と同じですが、ここではドラッグ アンド ドロップは問題なく機能しますが、t2.php の内容を display.php ( http://www.script. iblogger.org/display.php ) ajax 呼び出しを介して document.ready 関数が起動しない場合、どんな助けも大歓迎です。前もって感謝します! 編集:これをどのように変更すればよいですか?
display.php の AJAX 呼び出し関数:
function showSubjects(str)
{
if (str=="")
{
document.getElementById("teacher-row").innerHTML="";
return;
}
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("teacher-row").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","t2.php?s="+str,true);
xmlhttp.send();
}
t2.phpのドキュメント準備機能: (ドキュメント準備は ajax 呼び出しでは機能しないため)
$(document).ready(function(){...});