我正在学习HTML和PHP。我使用HTML开发了一种简单的表单。我想隐藏文件上传选项。如果用户从下拉菜单中选择图像或视频,我想显示文件上传部分。我一直在寻找实现这一目标的方法,但没有得到任何适当的方法。我的表格如下所示
n!
我在页面底部添加了如下代码,但它不起作用
<div class="form-group">
<label class="col-md-3 control-label">Category :-</label>
<div class="col-md-6">
<select name="faq_type" id="faq_type" class="select2" required>
<option value="0">Text</option>
<option value="1">Image</option>
<option value="2">Video</option>
</select>
</div>
</div>
<div class="form-group" style="display:none;" id="upload">
<label class="col-md-3 control-label">Select Image/Video :-</label>
<div class="col-md-6">
<div class="fileupload_block" >
<input type="file" name="au_picture" value="fileupload" id="fileupload">
<?php if(isset($_GET['cat_id']) and $row['au_picture']!="") {?>
<div class="fileupload_img"><img type="image" src="images/<?php echo $row['au_picture'];?>" alt="category image" /></div>
<?php } else {?>
<div class="fileupload_img"><img type="image" src="assets/images/add-image.png" alt="category image" /></div>
<?php }?>
</div>
</div>
</div>
我想隐藏<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
$('#faq_type').on('change', function () {
$("#upload").css('display', (this.value == '1') ? 'block' : 'none');
});
</script>
,并且只希望在用户从下拉列表中选择fileupload_block
时显示。让我知道是否有人可以帮助我。
我的整个页面如下所示
image or video
谢谢
答案 0 :(得分:2)
如果我正确理解了您的问题,则只需添加一个“或”语句:
Exception in thread "main" java.lang.Error: Unresolved compilation problems:
The method newEmbeddedDatabase(File) in the type GraphDatabaseFactory is not applicable for the arguments (String)
Syntax error on token ";", try expected after this token