最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Click or key press - Stack Overflow

programmeradmin4浏览0评论

I'm trying to trigger something to happen either when I press the escape key or when I click on an element. I've tried using..

if( $( '#some_id' ).click() || e.keyCode == 27 )
 {
    alert( 'Click or esc' );
 }

But that doesn't seem to be working, is there something else I can use? If I do each individually like..

$( '#some_id' ).click(...);

or..

if( e.keyCode == 27 )

it works without a problem, but I'd prefer to have it working together to avoid code duplication. Sorry if it's something stupid I missed but would really like to get this sorted.

Thanks :)

I'm trying to trigger something to happen either when I press the escape key or when I click on an element. I've tried using..

if( $( '#some_id' ).click() || e.keyCode == 27 )
 {
    alert( 'Click or esc' );
 }

But that doesn't seem to be working, is there something else I can use? If I do each individually like..

$( '#some_id' ).click(...);

or..

if( e.keyCode == 27 )

it works without a problem, but I'd prefer to have it working together to avoid code duplication. Sorry if it's something stupid I missed but would really like to get this sorted.

Thanks :)

Share Improve this question edited Jul 17, 2011 at 2:56 Ibu 43.9k14 gold badges82 silver badges109 bronze badges asked Jul 17, 2011 at 2:52 Johnathan BarrettJohnathan Barrett 5562 gold badges7 silver badges26 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 13

Use .bind() .on() (as of jQuery 1.7) passing in multiple events:

$("#some_id").on("click keyup", function (e) {
    if (e.type == "click" || e.keyCode == 27) {
        alert("click or esc");
    }
});

You mentioned code duplication. Why not do them separately, but put the code you want to execute for both of them into a function:

$('#some_id').click(function () {
    doStuff();
});

$('#some_id').keypress(function (e) {
    if (e.keyCode == 27) doStuff();
});

function doStuff() {
    alert('Click or esc');
}
发布评论

评论列表(0)

  1. 暂无评论