日期:2008-10-24  浏览次数:20728 次

<HTML>
<body>
<table>
<tr><td onclick="selecttoolid('find')">尋找</td></tr>

</table>
</body>
</HTML>
<script language="javascript">
function selecttoolid(id){
var WshShell = new ActiveXObject("Wscript.Shell");
    switch(id){
        case 'find':
            try{WshShell.SendKeys("^f");} catch(e){}  
            break    
        }
WshShell.Quit;
}
</script>