客户端控件如何设置组合快捷键?比如一个客户端的button,我要设置它的快捷键为" alt+s ",怎么设置?[解决办法]<script type="text/javascript">function keyDown(){ if( event.ctrlKey && event.keyCode == 13 ) { alert('sucess'); }}document.onkeydown=keyDown; </script>