发布于 2011-05-02 23:48:14
$('a').click(function(e){
if(e.ctrlKey)
{
alert( 'You pressed ctrl key' );
}
else
{
alert( 'You clicked on link without ctrl key' );
}
return false;
});https://stackoverflow.com/questions/5859161
复制相似问题