你的写法没问题
<html>
<head>
</head>
<body>
<input type="button" id ="test" value="test" />
<input type="button"  id="das"  value="das"/>
<script type="text/javascript" src ="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.min.js"></script>
<script language="javaScript">
 $(document).ready(function(){
$("#das").click(function(){alert(123);});
$("#test").click(function(){$("#das").click();});
   });
</script>
</body>
</html>