我正在使用此代码index.php
<?php
$filepath ="images/topbanner";
$files =scandir($filepath);
if ($handle = opendir($filepath)) {
echo '<div>';
while (false !== ($entry = readdir($handle))) {
if($entry != '.' && $entry != '..'){
?>
<img src="<?=$filepath.'/'.$entry?>" />
<?php
}
}
echo '<div>';
closedir($handle);
}
?>
但我想知道我可以使用 jquery 从文件夹中提取图像吗?
如果使用 jquery 不可能:我怎样才能将此代码嵌入而不是嵌入index.php
到slider.js
js 文件中。