假设我有以下内容,
<div id="sectionA"></div>
<div id="sectionB"></div>
<div id="sectionC"></div>
$("#sectionA").bind(keydown, function(events)
{
alert("section A");
return false;
});
$("#sectionB").bind(keydown, function(events)
{
alert("section B");
return false;
});
$("#sectionA").bind(keydown, function(events)
{
alert("section C");
return false;
});
这可能吗,如果没有,我怎样才能让它工作?