edit.htm

来自「企业内部的短信交流管理平台。 设计详细」· HTM 代码 · 共 42 行

HTM
42
字号
<!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 + =
减小字号Ctrl + -
显示快捷键?