• <legend id='zBE3F'><style id='zBE3F'><dir id='zBE3F'><q id='zBE3F'></q></dir></style></legend>

  • <tfoot id='zBE3F'></tfoot>
        <bdo id='zBE3F'></bdo><ul id='zBE3F'></ul>

      <i id='zBE3F'><tr id='zBE3F'><dt id='zBE3F'><q id='zBE3F'><span id='zBE3F'><b id='zBE3F'><form id='zBE3F'><ins id='zBE3F'></ins><ul id='zBE3F'></ul><sub id='zBE3F'></sub></form><legend id='zBE3F'></legend><bdo id='zBE3F'><pre id='zBE3F'><center id='zBE3F'></center></pre></bdo></b><th id='zBE3F'></th></span></q></dt></tr></i><div id='zBE3F'><tfoot id='zBE3F'></tfoot><dl id='zBE3F'><fieldset id='zBE3F'></fieldset></dl></div>

      1. <small id='zBE3F'></small><noframes id='zBE3F'>

      2. 使用 jquery 禁用所有具有模式功能的页面元素

        时间:2023-06-13
        1. <tfoot id='QhetH'></tfoot>
            <tbody id='QhetH'></tbody>
            <bdo id='QhetH'></bdo><ul id='QhetH'></ul>
            <legend id='QhetH'><style id='QhetH'><dir id='QhetH'><q id='QhetH'></q></dir></style></legend>

              <small id='QhetH'></small><noframes id='QhetH'>

            • <i id='QhetH'><tr id='QhetH'><dt id='QhetH'><q id='QhetH'><span id='QhetH'><b id='QhetH'><form id='QhetH'><ins id='QhetH'></ins><ul id='QhetH'></ul><sub id='QhetH'></sub></form><legend id='QhetH'></legend><bdo id='QhetH'><pre id='QhetH'><center id='QhetH'></center></pre></bdo></b><th id='QhetH'></th></span></q></dt></tr></i><div id='QhetH'><tfoot id='QhetH'></tfoot><dl id='QhetH'><fieldset id='QhetH'></fieldset></dl></div>

                  本文介绍了使用 jquery 禁用所有具有模式功能的页面元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我希望在某个操作时禁用所有页面元素.就像 JQuery UI 中的 modal 功能一样.

                  I wish to disable all page elements upon an action. Like the modal feature that is in the JQuery UI.

                  就像 ajax 动作一样.我希望显示通知,同时启用模态功能.并且请求后,需要重新启用页面元素回来.

                  Like on an ajax action.. I wish to show a notification and at the same time to enable the modal feature. And after the request, need to re-enable the page elements back.

                  在核心 jquery 中是否有任何可用的选项或任何插件?

                  Is there any option available in core jquery for that or any plugins?

                  推荐答案

                  页面元素没有被禁用 - 这样做会很乏味 - 而是在顶部覆盖了一个半透明的 div所有其他页面元素.为此,您可能会执行类似

                  The page elements are not disabled - doing that would be quite tedious - but rather, a semi-transparent div is overlayed on top of all other page elements. To do this, you would probably do something like

                  // Declare this variable in the same scope as the ajax complete function
                  overlay = $('<div></div>').prependTo('body').attr('id', 'overlay');
                  

                  还有 CSS:

                  #overlay {
                    position: fixed;
                    height: 100%;
                    width: 100%;
                    z-index: 1000000;
                    background: url('link/to/semitransparent.png');
                  }
                  

                  然后,一旦操作完成,您只需像这样删除它:

                  Then once the action is complete, you simply remove it like this:

                  overlay.remove();
                  

                  如果这是您唯一需要的,则无需包含 jQuery UI.

                  No need to include jQuery UI if this is the only thing you need it for.

                  这篇关于使用 jquery 禁用所有具有模式功能的页面元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:使用 bootstrap 3.0 模式在 iframe 中加载动态的远程内容 下一篇:固定引导程序 3 模式中的标题位置

                  相关文章

                  <small id='ugZTB'></small><noframes id='ugZTB'>

                      <bdo id='ugZTB'></bdo><ul id='ugZTB'></ul>
                    <legend id='ugZTB'><style id='ugZTB'><dir id='ugZTB'><q id='ugZTB'></q></dir></style></legend>

                    <tfoot id='ugZTB'></tfoot>

                      <i id='ugZTB'><tr id='ugZTB'><dt id='ugZTB'><q id='ugZTB'><span id='ugZTB'><b id='ugZTB'><form id='ugZTB'><ins id='ugZTB'></ins><ul id='ugZTB'></ul><sub id='ugZTB'></sub></form><legend id='ugZTB'></legend><bdo id='ugZTB'><pre id='ugZTB'><center id='ugZTB'></center></pre></bdo></b><th id='ugZTB'></th></span></q></dt></tr></i><div id='ugZTB'><tfoot id='ugZTB'></tfoot><dl id='ugZTB'><fieldset id='ugZTB'></fieldset></dl></div>