キーボードから次へボタン(右矢印>)をクリックして次に進みたい。どうやってやるの?解決策を見つけましたが、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>