egroupware/phpgwapi/js/tinymce/examples/zh_cn/example_mail.htm
Pim Snel 17710c20ab Add TineMCE, the future htmlArea Replacement. A clean WYSIWYG editor
see tinymce.moxiecode.com/ for more info
2005-06-21 13:02:36 +00:00

42 lines
1.7 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../docs/style.css" rel="stylesheet" type="text/css">
<!-- tinyMCE -->
<script language="javascript" type="text/javascript" src="../../jscripts/tiny_mce/tiny_mce.js"></script>
<script language="javascript" type="text/javascript">
tinyMCE.init({
theme : "advanced",
mode : "textareas",
language : "zh_cn",
content_css : "editor_content.css",
popups_css : "editor_popup.css",
editor_css : "editor_ui.css",
plugins : "table",
theme_advanced_buttons3_add_before : "tablecontrols,separator",
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,separator,justifyleft,justifycenter,justifyright,justifyfull,separator,formatselect,fontselect,fontsizeselect,forecolor",
extended_valid_elements : "font[face|size|color]"
});
</script>
<!-- /tinyMCE -->
<title>邮件示例</title></head>
<body>
<a href="example_simple.htm">[简单示例]</a> <a href="example_advanced.htm">[高级示例]</a> [邮件示例] <a href="example_full.htm">[全功能示例]</a>
<h3>邮件示例</h3>
以下例子展示了在在线邮件系统和其他不能使用CSS类的情况下如何启用字体名称和字体大小选择框。但是对于网站上使用的内容我们建议您还是使用CSS方法。欲了解TinyMCE更多的特征和设置请查看 <a href="../../docs/zh_cn/index.htm">手册</a><br>
<br>
<!-- Form with textare element with width: 100% -->
<form method="post" action="post.php">
<textarea id="elm1" name="elm2" style="width:100%" rows="15">
<h3>Test mail header 3</h3>
Some <b>element</b>. <br /> This editor instance has a 100% width to it.
<p>Some paragraph. <a href="http://www.sourceforge.net">Some link</a></p>
<img src="../logo.jpg">
</textarea>
</form>
</body>
</html>