我正在使用 editArea 库和 jquery 来做我需要的......
http://www.cdolivet.com/index.php?page=editArea&sess=2b8243f679e0d472397bfa959e1d3841
所以在我的 html 中有一个 iframe 标签,editArea 使用我需要的是使用 jquery 访问类似的东西
$('iframe textarea').keydown(function (e){
number = 17; //any number really :)
if(e.which == number){
//do something...
alert('Done...');
}
});
我尝试了上面的方法,但看起来它没有检测到那个键。但是如果选择器是 $(document) 它就可以工作,因此该函数的其余部分可以工作,只是它没有选择 iframes textarea keydown
有任何想法吗?谢谢