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)?

        Combine hover and click functions (jQuery)?(结合悬停和单击功能(jQuery)?)

        <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)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  ChartJS Version 3 - common legend for multiple line charts(ChartJS 版本 3 - 多个折线图的常用图例)
                  Charts.js scales yaxes ticks min max doesnt work(Charts.js 缩放 yaxes 刻度 min max 不起作用)
                  How to expand the slice of donut chart in chartjs?(如何在chartjs中扩展圆环图的切片?)
                  Chart.js yAxes Ticks stepSize not working (fiddle)(Chart.js yAxes Ticks stepSize 不起作用(小提琴))
                  Rounded corners on chartJS v.2 - bar charts (with negative values)(chartJS v.2 上的圆角 - 条形图(带负值))
                  How to hide value in Chart JS bar(如何在 Chart JS 栏中隐藏值)

                    <tbody id='eSw8M'></tbody>
                    • <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>