<html>
<head>
<meta charset="utf-8" />
<title></title>
<script type="text/javascript">
window.onload=function(){
var btn1=document.getElementById(‘btn1‘);
var btn2=document.getElementById(‘btn2‘);
var span=document.getElementById(‘span‘);
var num=16;
btn1.onclick=function(){
if(num<30){
num++;
span.style.fontSize=num+ ‘px‘
}
}
}
</script>
</head>
<body>
<input type="button" value="+" id="btn1"/>
<input type="button" value="-" id="btn2" />
<span id="span">10月28日晚,中央纪委监察部官网发布消息,贵州省委常委、遵义市委书记廖少华因涉嫌严重违纪违法接受组织调查。3天后中组部宣布对其免职。廖成为十八大后中纪委一连串"打虎"行动中第十一位落马的副省部级以上高官。</span>
</body>
</html>
时间: 2024-10-13 16:17:32