Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<html>
<head>
<title>点击改变按钮文字</title>
<meta http-equiv="content-Type" content="text/html;charset=gb2312">
</head>
<body>
<script language="JavaScript">
function hao() {
if (document.form1.ok.value=="中国")
{
document.form1.ok.value="北京";
}
else
document.form1.ok.value="中国";
</script>
<form name="form1" method="post" action="">
<input name="ok" type="button" id="ok" value="中国" onClick="hao();">
</form>
</body>
</html>
CSS代码...
JS代码...
xxxxxxxxxx