⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 input.html

📁 STCMS音乐系统 系统功能:   1、随意的添加导航栏目的频道
💻 HTML
字号:
{include file="head.html"}
<div class="title">文件列表</div>
<div class="content">
	<form name="inputListForm">
	<table>
    	<tr>
        	<td>选择</td>
        	<td>类型</td>
        	<td>名称</td>
            <td>大小</td>
            <td>修改时间</td>
            <td>操作</td>
        </tr>
    	{foreach from=$input item=list}
        <tr>
        	<td><input type="checkbox" id="id" value="{$path}{$list.name}" /></td>
        	<td>{if $list.type == "dir"}<img src="{$config.webUrl}images/folder.gif" />{else}<img src="{$config.webUrl}images/text.gif" />{/if}</td>
            <td>{if $list.name == ".."}<a href="input.php?path={$path}{$list.name}../">{$list.name}</a>{else}<a href="input.php?path={$path}{$list.name}">{$list.name}</a>{/if}</td>
            <td>{$list.size}</td>
            <td>{$list.mtime}</td>
            <td><input value="录入文件" type="button" onclick="inputMedia('{$path}{$list.name}','{$list.type}')" /></td>
        </tr>
        {/foreach}
    </table>
    <input value="全选" onclick="checkAll('inputListForm')" type="button" /> <input value="取消全选" onclick="cancleAll('inputListForm')" type="button" />
    </form>
</div>
<div id="pageDiv">{$pageCode}</div>
{include file="foot.html"}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -