Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<!DOCTYPE html>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
<script type="text/javascript" src="//apps.bdimg.com/libs/jquery/1.11.3/jquery.min.js"></script>
</head>
<body>
<p><span id = "s1">我是文字</span></p>
<input type ="button" id = "btn1" value = "变大" />
<input type ="button" id = "btn2" value = "变小" />
<input type ="button" id = "btn3" value = "变正常" />
<input type ="button" id = "btn4" value = "删掉变小事件" />
<p><input type = "text" id="txt" /></p>
<input type="button" id="btn5" value="触发文本框的事件" />
</body>
</html>
body {
background-image: url(/themes/zhan/styles/images/bg-body.jpg);
}
.main {
width: 80%;
margin: auto;
text-align: center;
border: 1px solid #e0e0e0;
box-shadow: 0 0 2px #ddd;
word-wrap: break-word;
padding: 10px;
border-radius: 3px
.da{
font-size:2em;
.xiao{
font-size:0.5em;
.zc{
font-size:1em;
xxxxxxxxxx
$(document).ready(function(){
$("#btn1").on("click",function(){
$("#s1").removeClass("xiao").removeClass("zc").addClass("da");
});
$("#btn2").on("click",function(){
$("#s1").removeClass("da").removeClass("zc").addClass("xiao");
$("#btn3").on("click",function(){
$("#s1").removeClass("da").removeClass("xiao").addClass("zc");
$("#btn4").on("click",function(){
$("#btn2").off("click");
$("#txt").focus(function(){
if($("#txt + lable").length>0){
$("lable").replaceWith("<lable>请输入内容哦</lable>");
}else{
$("#txt").after("<lable>请输入内容</lable>");
$("#btn5").on("click",function(){
$("#txt").trigger("focus");