0

キーボードから次へボタン(右矢印>)をクリックして次に進みたい。どうやってやるの?解決策を見つけましたが、100% 成功する前に失敗しました。

<html>

    <head>
        <script src="jquery-1.4.2.js"></script>
        <script src="jquery.hotkeys.js"></script>
        <script>
            //This page is a result of an autogenerated content made by running test.html with firefox.
            function domo() {
                jQuery(document).bind('keydown', 'right', function (evt) {
                    location.href = $('#previous_page_link').href;
                    //window.location.href = 'http://www.google.com';
                });
            }
            jQuery(document).ready(domo);
        </script>
    </head>

    <body>
        <a id="previous_page_link" href="http://www.google.com">Google</a>
        <a id="next_page_link" href="http://www.yahoo.com">Yahoo</a>
    </body>

</html>

https://github.com/jeresig/jquery.hotkeys

4

1 に答える 1

0

試す:

jQuery(document).ready(function() {
     jQuery(document).bind('keydown', 'right', function () {
          location.href = $('#previous_page_link').attr('href');
       });
   });
于 2012-05-16T21:56:34.107 に答える