我使用基于jQuery的文件列表
代码:
<script type="text/javascript">
$(document).ready( function() {
$('#fileTreeDemo_2').fileTree({
root: '../../',
script: 'connectors/jqueryFileTree.php',
folderEvent: 'click',
expandSpeed: 750,
collapseSpeed: 750,
multiFolder: false
},
function(file){
alert(file);
});
});
</script>
<div id="fileTreeDemo_2"></div>
结果:
它显示文件列表,当我选择文件时,它会触发function(file)
并提供警报alert(file);
现在的问题是,如果我想在所选文件目录中添加input
字段,而不是向我发送警报alert(file);
,则会在input
字段中显示该字段,如此图所示
所以我只想修改function(file){ alert(file); });
以显示alert
input
字段id="dir"
内容<input type="text" name="something" id="dir">
与该代码的内容
{{1}}
〜谢谢
答案 0 :(得分:1)
function showName(file) {
$("#dir").val(file);
}