不要执行我的脚本,在刀片中隐藏引导模式
Posted
技术标签:
【中文标题】不要执行我的脚本,在刀片中隐藏引导模式【英文标题】:Don´t execute my script, hide boostrap modal in blade 【发布时间】:2015-06-30 18:38:17 【问题描述】:我在想要显示的视图中有以下代码,但不显示脚本,并且不起作用
当我加载视图时,我无法隐藏我的模式
@if(!empty($status) && $status == 'ok_create')
<script>
alert('hi');
$("#box-modal").modal('hide');
</script>
<div class="alert alert-success">
<a href="#" class="close" data-dismiss="alert">×</a>
<i class="fa fa-check-square-o"></i> El usuario fue creado con exito
</div>
@endif
我的仓库 github => https://github.com/Mangulomx/viversoft1
【问题讨论】:
警报是否出现?您是否在控制台中看到任何错误? 我在控制台中没有看到任何错误 哦,是的,它的$('#box-modal').modal('hide');
不是 .show('hide')
我写错了。但不工作。我修改了它
【参考方案1】:
我认为问题不在于模式,而在于您编写脚本的地方。你是怎么得到这个$status
的?如果它是 ajax 查询的答案或页面加载后得到的东西,它在 php 代码中不起作用,你应该把它全部包含在 javascript 中。
【讨论】:
以上是关于不要执行我的脚本,在刀片中隐藏引导模式的主要内容,如果未能解决你的问题,请参考以下文章