gpt4 book ai didi

php - jquery目录树

转载 作者:行者123 更新时间:2023-12-01 06:04:57 24 4
gpt4 key购买 nike

我正在使用 jquery 列出目录,我想在其中添加删除复选框并删除树上每个目录的提交按钮。怎么做?我正在使用下面的代码。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>jQuery Drop Down Menu</title>

<!-- CSS For The Menu -->
<link rel="stylesheet" href="stylee.css" />

</head>
<body>

<!-- Menu Start -->
<div id="jQ-menu">

<?php
error_reporting(0);
$path = "store/".$diro."/";

function createDir($path = '.')
{
if ($handle = opendir($path))
{
echo "<ul>";

while (false !== ($file = readdir($handle)))
{
if (is_dir($path.$file) && $file != '.' && $file !='..')
printSubDir($file, $path, $queue);
else if ($file != '.' && $file !='..')
$queue[] = $file;
}

printQueue($queue, $path);
echo "</ul>";
}
}

function printQueue($queue, $path)
{
foreach ($queue as $file)
{
printFile($file, $path);
}
}

function printFile($file, $path)
{
echo "<li><a href=\"".$path.$file."\">$file</a></li>";
}

function printSubDir($dir, $path)
{
echo "<li><span class=\"toggle\">$dir</span>";
createDir($path.$dir."/");
echo "</li>";
}

createDir($path);
?>

</div>
<!-- End Menu -->


<!-- Add jQuery From the Google AJAX Libraries -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>


<!-- jQuery Color Plugin -->
<script type="text/javascript" src="jquery.color.js"></script>

<!-- Import The jQuery Script -->
<script type="text/javascript" src="jMenu.js"></script>

</body>
</html>

最佳答案

您到底希望用户能够对树执行什么操作?用户应该如何 react ?凭直觉,我认为至少有两条路可以走。您可以立即输出复选框和按钮的 html,然后使用选择器向它们添加行为,或者您可以先输出树,然后在 document.ready 之后使用 jquery 的 DOM 修改(例如 before().<)来修改 dom。/p>

根据您想要的功能,它可能类似于:

function printFile($file, $path)
{
echo "<li class='fileNode'><a href=\"".$path.$file."\">$file</a></li>";
}
function printSubDir($dir, $path)
{
echo "<li class='dirNode'><span class=\"toggle\">$dir</span>";
createDir($path.$dir."/");
echo "</li>";
}

然后在你的 JavaScript 中做类似的事情

$(document).ready(function
{
// you should still assign some behaviour probably
$(".fileNode").prepend("<input type='checkbox' />");
});

或者您可以确保复选框已经存在,并且可以将一些ajax函数绑定(bind)到复选框的change()。 http://api.jquery.com/change/

关于php - jquery目录树,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7273477/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com