6_6.htm
来自「ASP 网页数据库短训教程源码」· HTM 代码 · 共 25 行
HTM
25 行
<HTML>
<HEAD><TITLE>使用复选框</TITLE></HEAD>
<BODY><H3>使用复选框</H3><HR>
<INPUT name=Text1 type=Text value =文本内容 Style={font:44} Size=20><P>
斜体<INPUT type = checkbox name=chk>
粗体<INPUT type = checkbox name=chk>
下划线<INPUT type = checkbox name=chk>
删除线<INPUT type = checkbox name=chk>
<SCRIPT FOR=chk EVENT=onClick LANGUAGE=VBScript>
If chk(0).checked Then
Text1.Style.Fontstyle = "italic"
Else
Text1.Style.Fontstyle = "normal"
End If
If chk(1).checked Then
Text1.Style.Fontweight = "bold"
Else
Text1.Style.Fontweight = "normal"
End If
Text1.Style.TextdecorationUnderline = chk(2).checked
Text1.Style.TextdecorationlineThrough = chk(3).checked
</SCRIPT>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?