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

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

        • <bdo id='SlhaM'></bdo><ul id='SlhaM'></ul>
      1. <tfoot id='SlhaM'></tfoot>
        <legend id='SlhaM'><style id='SlhaM'><dir id='SlhaM'><q id='SlhaM'></q></dir></style></legend>

        结合悬停和单击功能(jQuery)?

        时间:2023-11-01

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

        • <bdo id='FmQ2u'></bdo><ul id='FmQ2u'></ul>

              <tbody id='FmQ2u'></tbody>
          1. <i id='FmQ2u'><tr id='FmQ2u'><dt id='FmQ2u'><q id='FmQ2u'><span id='FmQ2u'><b id='FmQ2u'><form id='FmQ2u'><ins id='FmQ2u'></ins><ul id='FmQ2u'></ul><sub id='FmQ2u'></sub></form><legend id='FmQ2u'></legend><bdo id='FmQ2u'><pre id='FmQ2u'><center id='FmQ2u'></center></pre></bdo></b><th id='FmQ2u'></th></span></q></dt></tr></i><div id='FmQ2u'><tfoot id='FmQ2u'></tfoot><dl id='FmQ2u'><fieldset id='FmQ2u'></fieldset></dl></div>
              <legend id='FmQ2u'><style id='FmQ2u'><dir id='FmQ2u'><q id='FmQ2u'></q></dir></style></legend>

                  <tfoot id='FmQ2u'></tfoot>
                  本文介绍了结合悬停和单击功能(jQuery)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  可以将悬停和点击功能合二为一,例如:

                  Can hover and click functions be combined into one, so for example:

                  点击:

                  $('#target').click(function() {
                    // common operation
                  });
                  

                  悬停:

                  $('#target').hover(function () {
                      // common operation
                  });
                  

                  它们可以组合成一个功能吗?

                  can they be combined into one function?

                  谢谢!

                  推荐答案

                  使用基本的编程组合:创建一个方法并将相同的函数传递给 clickhover 作为回调.

                  Use basic programming composition: create a method and pass the same function to click and hover as a callback.

                  var hoverOrClick = function () {
                      // do something common
                  }
                  $('#target').click(hoverOrClick).hover(hoverOrClick);
                  

                  <小时>

                  第二种方式:使用bindon:

                  $('#target').on('click mouseover', function () {
                      // Do something for both
                  });
                  

                  <小时>

                  jQuery('#target').bind('click mouseover', function () {
                      // Do something for both
                  });
                  

                  这篇关于结合悬停和单击功能(jQuery)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:如何应用 child:hover 但不是 parent:hover 下一篇:如何调试 CSS/Javascript 悬停问题

                  相关文章

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

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

                • <tfoot id='eSw8M'></tfoot>
                      <bdo id='eSw8M'></bdo><ul id='eSw8M'></ul>
                    <legend id='eSw8M'><style id='eSw8M'><dir id='eSw8M'><q id='eSw8M'></q></dir></style></legend>