html要素のアクセスに関する質問があります。PHPのhtmlテーブルへのアクセス
File1.PHP
<table id="tableID">
<tr>
<td> 
</td>
</tr>
</table>
<input type=button onclick=changeValue();>
<script type="text/javascript" src="file2.JS"></script>
File2.JS
function changeValue(){
//HAS AJAX OBJECT THAT CALLS file3.php to read a file
ajax.doPost("file3.php", callback); }
File3.php
function fileRead(){
...
$line = fgets($file_handle);
///After reading the lines of the file in File3.php
///I want to output it in the table in File1.PHP without returning
///it as xmlResponse to File2.JS
///Is it possible to acces the table in File1.PHP here?
}
が可能みんなこの流れですか?私はそれを働かせることができないので。
ヘルプ..
おかげで、
それははるかに容易になりますAJAXで 'file1.php'から' file3.php'にすべての必要な値を渡すだけならば、 –
@ KemalFadillahあなたはfile2.jsからテーブルオブジェクトを取得し、file3.phpに渡すことを意味しますか? – tinks
実際には、JavaScriptでDOMをトラバースし、必要な値をテーブルから取り出し、AJAXを介して送信することを考えていました。私はあなたが探しているものは、テーブルそのものではなく、データであると確信しています。 –