如果这个问题看起来像是一个重复的问题,我很抱歉,但请先听一听。 1,我正在使用asp.net vb和材料仪表板设计,我没有使用mvc概念。
我想在插入,更新或删除时显示模态成功/失败消息。模态将在(vb)后面的代码中触发。
这是我在网站管理员中的模式。
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel1">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel1">testing</h4>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Search</button>
</div>
</div>
</div>
</div>
</form>
</body>
<script type="text/javascript">
function openModal() {
$('#myModal').modal('show');
}
</script>
这是我的脚本代码,
function openModal() {
$('#myModal').modal('show');
}
这是我在vb中的代码
Protected Sub btnTesting_Click(sender As Object, e As EventArgs) Handles btnTesting.Click
ScriptManager.RegisterStartupScript(Page, Page.GetType(), "myModal", "openModal();", True)
End Sub
并且错误是Uncaught ReferenceError:未定义openModal。
那么,我的错误在哪里? 我忘记了什么吗? 或者您是否有其他方法可以使用代码来触发模态?
为了您的信息,我是asp.net的新手。在我更多关于PHP之前。 提前致谢。