1
fanzeyi 2012-04-04 17:02:08 +08:00
|
3
TashinV 2012-04-04 17:04:52 +08:00
tab+space
|
5
thedevil7 OP @Livid 这个问题重复提了好多次了, 不如把这个放入 V2EX 的教程贴把. 我记得最开始来 V2EX 的时候, 右边貌似有类似的东西.
|
7
liyandong 2012-04-04 17:53:02 +08:00
|
8
liyandong 2012-04-04 17:53:49 +08:00
|
9
akai 2012-04-04 21:15:07 +08:00
$('#reply_content').keydown(function(e) {
if ( e.ctrlKey && e.keyCode === 13 ) { $(this).closest('form').submit(); } }); |
10
NemoAlex 2012-04-04 23:29:02 +08:00
Tab then Enter 是更贴近浏览器的交互方式
|