触发模式以显示无非点击

时间:2015-11-26 12:29:25

标签: javascript html

我有一个想要使用data-toggle触发的隐藏模态。 但它需要从它自己开始。所以没有点击。

我可以使用带有data-toggle的图标来显示模态:

<a href="#RemoveSerialNumberModal" data-toggle="modal"><i class="icon-plus"></i></a>

这显示模态'AddSerialNumberModal'。

现在我想检查是否!empty($_GET['sn']),如果不是,我想打开它自己的模态。

我和JS一起试过这个:

$('#RemoveSerialNumberModal').modal();
$('#RemoveSerialNumberModal').modal(show);
$('#RemoveSerialNumberModal').data-toggle(modal);

但这不起作用。

(我真的想在JS中这样做。)

------------- -------------编辑

<script>alert('where here stage 1 tho!');
        $("#RemoveSerialNumberModal").dialog({modal: true});
        alert('where here stage 2 tho!');</script>

这就是我测试它的方式。当我运行该示例时,它会警告第一个1但不显示第二个警报。所以它在某种程度上打破了中间的代码。

1 个答案:

答案 0 :(得分:0)

如果其他方式无法显示模态

,您可以触发点击功能
<a id="someid" href="#AddSerialNumberModal" data-toggle="modal"><i class="icon-plus"></i></a>

$('#someid').trigger('click');