Your browser does not support the v-6ren">
gpt4 book ai didi

javascript - 当数据库中没有要显示的视频时隐藏视频容器 HTML PHP

转载 作者:行者123 更新时间:2023-11-28 05:26:04 25 4
gpt4 key购买 nike

下面是我的 html 代码,用于显示来自数据库的练习视频:

<video id = "video" width="640" height="360" controls = "controls" src="admin/exercise_content/<?php echo $data['exercise_video']?>" alt="Exercise" type="video/mp4"> Your browser does not support the video tag. </video>

有时候数据库中没有练习视频,所以我想隐藏这个标签。如果数据库中没有视频,则会显示下面的视频样本/容器。有什么办法可以在没有视频显示的时候隐藏这个视频容器?

default video displayed if exercise video empty in database

感谢您的帮助!

最佳答案

试试这个

<?php if ( $data['exercise_video'] != '' ) { ?>
<video id = "video" width="640" height="360" controls = "controls"src="admin/exercise_content/<?php echo $data['exercise_video']?>" alt="Exercise" type="video/mp4"> Your browser does not support the video tag. </video>
<?php } ?>

关于javascript - 当数据库中没有要显示的视频时隐藏视频容器 HTML PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32258240/

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