ASP.NET Bootstrap 在 body 标签末尾加载 JS 文件时显示模式
ASP.NET Bootstrap show modal while loading JS files at the end of body tag
我正在尝试使用 ASP.NET.
以编程方式显示 bootstrap 模态
问题是脚本管理器在脚本加载之前(我在正文末尾加载脚本文件)。因此,ScriptManager 代码不会影响模式。
有什么方法可以绕过它而不把JS文件移到头部吗?
谢谢
所以,我发现了如何 运行 它甚至没有 jquery 加载。
在<head>
标签处我添加了:
<script>
function showModal() {
$('#myModal').modal('show');
}
</script>
在服务器端,我所要做的就是调用:
ScriptManager.RegisterStartupScript(this, this.GetType(), "myModal", "window.onload = showModal;", true);
所以现在它 运行 甚至会在加载任何 js 文件之前调用它。
我正在尝试使用 ASP.NET.
以编程方式显示 bootstrap 模态问题是脚本管理器在脚本加载之前(我在正文末尾加载脚本文件)。因此,ScriptManager 代码不会影响模式。
有什么方法可以绕过它而不把JS文件移到头部吗?
谢谢
所以,我发现了如何 运行 它甚至没有 jquery 加载。
在<head>
标签处我添加了:
<script>
function showModal() {
$('#myModal').modal('show');
}
</script>
在服务器端,我所要做的就是调用:
ScriptManager.RegisterStartupScript(this, this.GetType(), "myModal", "window.onload = showModal;", true);
所以现在它 运行 甚至会在加载任何 js 文件之前调用它。