如何使用jquery ajax获取文件列表

我想获取文件列表(来自名为uploads的文件夹。

get_files.php

 <?php $dir = 'uploads/'; $a = scandir($dir); $b=count($a); for($x=2;$x<$b;$x++) { echo"
"; echo $a[$x]; echo "
"; } ?>

get_files.php可以单独运行,即它正确列出文件。
但是我怎样才能在里面的div里面得到这个列表呢?
我可以包含get-files.php但我需要使用jquery ajax,因为稍后重用该函数。

 function get_files(){ $.ajax({ url : 'get_files.php', type : 'get' }); $('#insideT').html(//here I want to get the file listing); } get_files(); 

试试这个

get_files.php

 "; $res.= $a[$x]; $res.= "
"; } echo $res; ?>

Ajax脚本

 function get_files(){ $.ajax({ type: "GET", url: "get_files.php", cache: false, success: function(result){ $("#insideT").html(result); } }); } 

scandir是坏习惯:(

使用更快的解决方案: https : //stackoverflow.com/a/30949072/257319