问题:
P.S我是网络开发领域的新手,也是我的第一个项目
谢谢
答案 0 :(得分:10)
文本框就像wordpad一样,你不能格式化它,如果你从word或任何其他格式化的文本粘贴它将擦除所有格式,你将只留下文本。
你需要在文本区域添加一个编辑器,我使用TinyMCE,但是还有很多其他的。
要实现,您需要在您的网络目录中拥有所有来源(可以从TinyMCE获得)。
以下是您可以尝试的示例:
将此添加到您网页的标题部分:
<script language="javascript" type="text/javascript" src="/js/tiny_mce/tiny_mce.js"></script>
<script language="javascript" type="text/javascript">
tinyMCE.init({
theme : "advanced",
mode: "exact",
elements : "elm1",
theme_advanced_toolbar_location : "top",
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,separator,"
+ "justifyleft,justifycenter,justifyright,justifyfull,formatselect,"
+ "bullist,numlist,outdent,indent",
theme_advanced_buttons2 : "link,unlink,anchor,image,separator,"
+"undo,redo,cleanup,code,separator,sub,sup,charmap",
theme_advanced_buttons3 : "",
height:"350px",
width:"600px"
});
</script>
<script type="text/javascript">
tinyMCE.init({
// General options
mode : "textareas",
theme : "advanced",
plugins : "autolink,lists,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",
// Theme options
theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,spellchecker,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,blockquote,pagebreak,|,insertfile,insertimage",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true,
// Skin options
skin : "o2k7",
skin_variant : "silver",
// Example content CSS (should be your site CSS)
content_css : "css/example.css",
// Drop lists for link/image/media/template dialogs
template_external_list_url : "js/template_list.js",
external_link_list_url : "js/link_list.js",
external_image_list_url : "js/image_list.js",
media_external_list_url : "js/media_list.js",
// Replace values for the template plugin
template_replace_values : {
username : "Some User",
staffid : "991234"
}
});
</script>
然后调用textarea:
<textarea name="content" style="width:100%">YOUR TEXT HERE</textarea>
注意:您需要下载并在您的目录中拥有<script language="javascript" type="text/javascript" src="/js/tiny_mce/tiny_mce.js"></script>
希望这有帮助!
答案 1 :(得分:9)
你想要的是Rich Text Editor。标准HTML <textarea>
标记仅接受纯文本(即使文本是HTML标记或包含HTML标记)。有很多例子(包括链接页面上列出的一些),但我强烈建议使用预先打包的一个。编写自己的编码对于新手,甚至很多有经验的人来说都相当复杂。 TinyMCE和CKEditor都是非常常见的,但也有很多其他的。
答案 2 :(得分:3)
如果您希望某人能够格式化他们的文本(例如,使用WYSIWYG粗体按钮等),但是如果您希望能够接受预先格式化的HTML(例如复制和从其他HTML源(如网页)粘贴),然后您可以执行此操作:
<form ...>
<label>Paste your HTML in the box below</label>
<textarea style='display:none' id='foo'></textarea>
<div id='htmlsource' contenteditable style='border:solid 1px black;padding:1em;width:100%;min-height:2em;' ></div>
<input type='submit' />
</form>
<script>
jQuery(function(){
jQuery('form').submit( function(e) {
jQuery('textarea').val( jQuery('#htmlsource').html() );
});
});
</script>
这会使用contenteditable
div
元素,您可以将其格式化为输入框并接受粘贴的HTML,以及隐藏的textarea#foo
,它将使用粘贴的HTML进行填充在提交表单之前。
请注意,这不是一个可以访问的解决方案。
答案 3 :(得分:0)
根据您编程的目标,仅在文本区域的输入左右添加“ pre”标签就已经足够了。例如,如果您的代码提交到表单的文本区域内的内容,然后在目标文件中回显它,则该代码已经可以工作。
> File 1:
>
> <form action="Output.php" methode=post>
> <textarea name="Input"></textarea>
> </form>
>
> File Output.php
>
> $UserInput = $_POST["Input"];
> $UserInput = "<pre>" . $UserInput . "</pre>"
> echo $UserInput
这将保留所有Enter,例如在原始用户输入中使用的所有Enter,并正确回显它们
如果您从App Engine中检索内容,则在大多数情况下,使用已添加的pre标签保存内容就可以了