📄 edit.htm
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>无标题文档</title>
<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
<LINK href="css/ocean.css" type="text/css" rel="stylesheet">
</head>
<body>
<table border="0" width="100%">
<tr>
<td width="100%" align="left">
<img src="Images/EditImages/bold.gif" border="0" onclick="SetBold()"> <img src="Images/EditImages/italic.gif" border="0" onclick="SetItalic()">
<img src="Images/EditImages/insertimage.gif" border="0">
<img src="Images/EditImages/underline.gif" border="0" onClick="SetUnderline()">
选择字体:
</td>
</tr>
<tr>
<td align="left">
<iframe id="Message" style="WIDTH:600px; HEIGHT:100px"></iframe>
</td>
</tr>
</table>
<script>
Message.document.designMode="on";
function SetBold()
{
Message.document.execCommand("Bold");
}
function SetItalic()
{
Message.document.execCommand("Italic");
}
function SetUnderline()
{
Message.document.execCommand();
}
</script>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -