Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<html>
<head>
<title>JavaScript单击按钮调用函数</title>
<script language="javascript">
<!--
function fun(){
alert("这是单击按钮后执行的函数!");
}
//-->
</script>
</head>
<body>
<input type="button" value="单击调用函数" onClick="fun()">
</body>
</html>
CSS代码...
JS代码...
xxxxxxxxxx