添加 jquery.blockUI 到 aspx 后的回发问题

发布于 2024-10-09 10:44:08 字数 193 浏览 1 评论 0原文

后,页面上的按钮没有进行回发

<script type="text/javascript" src="scripts/jquery.blockUI.js" />

添加到 aspx 页面的标题 。如果我注释掉这一行就可以了。我在该位置确实有 jquery.blockUI.js 。有什么建议吗?

The button on the page is not doing a postback after I add

<script type="text/javascript" src="scripts/jquery.blockUI.js" />

to the header of the aspx page. If I comment this line out it works. I do have the jquery.blockUI.js at that location. Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初见终念 2024-10-16 10:44:08

您不能使用自关闭的

<script type="text/javascript" src="scripts/jquery.blockUI.js"></script>

You can't have self-closing <script> tags...you'll get some odd behavior and missing files you think are being loaded. Your tag should look like:

<script type="text/javascript" src="scripts/jquery.blockUI.js"></script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文