我有:
<select name="department" id="department" onchange="this.form.submit()">
<?php
do {
?>
<option value="<?php echo $row_department['dept_Name'] ?>"><?php echo $row_department['dept_Name'] == $department ? 'selected' : ''?><?php echo $row_department['dept_Name']
?></option>
<?php
} while ($row_department = mysql_fetch_assoc($department));
$rows = mysql_num_rows($department);
if($rows > 0) {
mysql_data_seek($department, 0);
$row_department = mysql_fetch_assoc($department);
}
?>
</select>
&#13;
对于名为department
的数据库的下拉列表。
选择下拉列表后,将从数据库(例如id, name, dept_name
下方/上一个按钮)查看多个文件集。
问题是,每当我点击下一个/上一个按钮时,都没有查看文件。
必须第二次选择下拉列表才能查看第二个文件集。
我该怎么做以及如何做?我正在使用Dreamweaver CS6。
答案 0 :(得分:0)
试试这个。您无法搜索,因为您没有查询来执行此操作。
gulp.task('bundlejs', function(){
return bundles.forEach(function(obj){
return gulp.src(obj.src)
.pipe(concat(obj.bundleName))
.pipe(gulp.dest('js/_bundles'))
});
});