Chinaunix首页 | 论坛 | 博客
  • 博客访问: 5096281
  • 博文数量: 921
  • 博客积分: 16037
  • 博客等级: 上将
  • 技术积分: 8469
  • 用 户 组: 普通用户
  • 注册时间: 2006-04-05 02:08
文章分类

全部博文(921)

文章存档

2020年(1)

2019年(3)

2018年(3)

2017年(6)

2016年(47)

2015年(72)

2014年(25)

2013年(72)

2012年(125)

2011年(182)

2010年(42)

2009年(14)

2008年(85)

2007年(89)

2006年(155)

分类:

2007-03-09 06:12:12









注意以上红色部分是tiny_mce.js脚本文件的位置,该文件中包含了编辑器所需要的全部代码,主题及语言包将在初始化时被加载。

蓝色部分是初始化调用,它生成TinyMCE的全局实例,其中的设置及名称-值属性将在以后描述。



设置



名称-值属性方式传递给tinyMCE的init方法的设置控制着程序的全局行为。所有的键及可能的键值如下表所示。注意,用[]括起来的名称是可选的,不是必须的设置。



常规设置
mode Mode可以是以下几个值之一:



textareas - 页面加载时把所有TEXTAREA组件转换成编辑器.

specific_textareas - 将所有"mce_editable"属性值为true的TEXTAREA转换成编辑器.

exact - 只转换在"elements"设置中指定的确切组件.
[theme] 指定要使用的主题名称,主题将被放在TinyMCE的themes目录下,默认为default。TinyMCE自带三个内置的主题,它们是simple,default和advanced。

如果你想创建自己的主题,请仔细阅读文档的 部分。
[plugins] 此选项是一系列以逗号分隔的主题插件列表(例如,可以只用来扩展图像对话框)。这些插件覆盖了主题模板中定义的功能。插件逻辑应该包含在一个叫"editor_plugin.js"的文件中,它是插件目录中唯一被包含进来的文件。

例如:"my_image_dialog,my_link_dialog".

如果你想创建自己的插件,请仔细阅读文档的 部分。
[language] TinyMCE中使用的语言包,这应该是像se,uk,us等诸如此类的FN代码,它被用来从"langs"目录中获取语言包,该设置的默认值为"uk".

中文用户建议您使用"zh-CN"
[elements] 以逗号分隔的用来转换成编辑器的组件列表,该选项仅在"mode"选项被设置成"exact"时使用。该列表中的元素可以是任何有id或name属性的HTML组件。
[ask] 当"mode"被设置成"textareas"或"specific_textareas"的时候,该选项被应用,询问用户输入框是否将被转换成编辑器。

如果你想使用这个选项,将它设置为true.
[textarea_trigger] textarea(文本域)触发器的属性,默认值为"mce_editable"。

该选项仅在"mode"被设置为"specific_textareas"时使用。
[valid_elements] 以逗号分隔开的组件转换部分的列表。



例如: a[href|target=_blank],strong/b,div[align],br.



以上例子告诉TinyMCE移除所有除了"a, strong, div"和"br"的组件,将元素b转换成strong,默认target设为"_blank"并保持href、target、align属性。在匹配组件及属性的名称时可以使用像*,+,?这样的通配符。



字符:

, 各组件定义之间的分隔符。
/ 两个同义组件之间的分隔符。第一个组件是会被用来输出的那个(即第二个组件被第一个替换)。
| 各属性定义之间的分隔符。
[ 定义某组件的属性列表的开始符号。
] 定义某组件的属性列表的结束符号。
= 将属性的默认值设为特定值。例如:"target=_blank"
: 将属性的值强行设为特定值。例如:"border:0"
< 校验某个属性的值。例如:"target<_blank?_self"
? 属性校验值之间的分隔符,见上。


特殊变量:

{$uid} - 产生一个唯一ID号。 例如:"p[id:{$uid}]".



此选项的默认值是以下模式:

"a[href|target],strong/b[class],em/i[class],strike[class],u[class],p[class|align],ol,ul,li,br,

img[class|src|border=0|alt|hspace|vspace|width|height|align],sub,sup,blockquote[dir|style],

table[border=0|cellspacing|cellpadding|width|height|class|align],tr[rowspan],

td[colspan|rowspan|width|height],div[class|align],span[class|align],pre[class|align],

address[class|align],h1[class|align],h2[class|align],h3[class|align],

h4[class|align],h5[class|align],h6[class|align],hr".



要包含所有组件及属性,请使用 *[*] ,这在使用invalid_elements选项时特别有用。
[extended_valid_elements] 向"valid_elements"列表末尾添加可用组件。此选项在你仅仅想往默认列表中增添部分组件时相当有用。

格式与"valid_elements"一致。
[invalid_elements] 输出时需要排除在外的组件名称列表,以逗号分隔开。
[trim_span_elements] True/False选项。如果设置为true,不需要的组件将被移除。默认值即为true。
[verify_css_classes] True/False选项。如果设置为true,将会校验CSS的class属性。默认值即为true。
[verify_html] True/False选项。代表着HTML内容是否需要校验。默认值为true。
[urlconvertor_callback] 当清理进程处理URL的时候调用的函数名。此函数必须遵从以下的格式:func(url, node, on_save) ,返回转换后的URL。此设置专为集成目的而设。参数url代表要转换的地址,node代表包含URL的那个节点,on_save是一个布尔值(在用户提交表单时为真)。
[preformatted] True/False选项。如果设置为true,编辑器将把制表符(TAB)转换成缩进,除此外保持其他whitespace(空白字符、换行等)字符,就如同HTML标签中的PRE的效果。默认值为false。
[insertlink_callback] 当执行"insertlink"命令时调用的函数名。此函数获取选定链接的地址和目标,返回一个以"href", "target"和 "title"为collection名称的数组。当使用新窗口时,为了兼容Mozilla,会在window.opener(弹出窗口的母窗口,译者注)上调用tinyMCE.insertLink。
[insertimage_callback] 当执行"insertimage"命令时调用的函数名。此函数获取选定图像的url并返回一个以src和alt为collection名称的数组。当使用新窗口时,为了兼容Mozilla,会在window.opener上调用tinyMCE.insertImage。

函数格式:insertimage(src, alt, border, hspace, vspace, width, height, align, title, onmouseover, onmouseout, action).
[setupcontent_callback] 当编辑器初始化时调用的函数名。函数格式:setupContentCallback(editor_id, node),其中editor_id是编辑器的id,node是编辑器所在的body组件节点。
[save_callback] 当执行triggerSave(触发保存)命令被调用时调用的函数名。函数格式:save(id, content, node),如果有特定返回值,其值将会被加到HTML表单组件上。所以可以通过此函数来自定义用户转换逻辑。
[docs_language] TinyMCE文档中使用的语言,这应该是像se,uk,us等诸如此类的FN代码,它被用来从"/docs/"目录中获取文档。 该选项的默认值跟language选项一致。
[width] 编辑器的宽度,它默认的宽度是原先被替换的组件宽度。
[height] 编辑器的高度,它默认的高度是原先被替换的组件高度。
[content_css] 编辑窗口中要使用的CSS文件,其路径应该跟页面相关。
[popups_css] 像插入链接和图片时的弹出窗口中使用的CSS文件,其路径应该跟页面相关。
[editor_css] 编辑器使用的CSS文件,其路径应该跟页面相关。
[encoding] 编辑器的输出编码,此选项目前只能为"html"或者空。如果设置为"html",编辑器的输出将经过HTML编码处理。

例如:<将会变成<,依此类推。默认值是空。
[debug] True/False选项。如果设置成true,像css文件路径等调试信息将会被显示。
[visual] True/False选项。如果设置成true,当边框设置成0的时候,为达到更好的视觉效果在编辑器中表格会有虚线出现。

默认值为true。
[visual_table_style] 用户可自定义表格的样式,默认值为:"border: 1px dashed #BBBBBB"。
[add_form_submit_trigger] True/False选项。如果设置成true,将强制进行所有表单的"onsubmit"事件处理并引发保存。此选项默认值为true。
[add_unload_trigger] True/False选项。如果设置成true,在"onunload"事件发生时,当前窗口会引发一个triggerSave调用。此triggerSave调用不会做任何清理工作,因为它是用来处理 前进/后退 按钮的。此选项默认值为true。
[force_br_newlines] True/False选项。此选项强制编辑器将段落符号(P)替换成换行符(BR)。此选项默认值为false。(实验阶段)
[force_p_newlines] True/False选项。如果打开此选项,在按下回车键(Enter)时Mozilla/Firefox浏览器会生成段落符号(P),在按下Shift+Enter时会生成换行符(BR)。此选项默认为true。
[relative_urls] True/False选项。如果设置成true,绝对路径将被转换成相对路径。默认值为true。
[remove_script_host] True/False选项。在设置成true的情况下,如果URL中的主机名、端口号跟编辑器当前所在一致,它们会被移除。

例如:编辑器所在站点为 ,那么以下链接 /somedir/somepage.html 将会被转换成 /somedir/somepage.html 。

如果relative_urls被设置成false,此选项默认为true。
[focus_alert] True/False选项。如果设置成true,编辑器在失去焦点的时候就会出现一个烦人的警告框。默认值为true。
[document_base_url] 在将绝对路径转换成相对路径的时候会用到此文档的URL。这个选项指定了编辑器当前的默认文档。

注意如果此选项指定到一个域名,请添加协议前缀,并以斜杠结尾。例如:
[custom_undo_redo] True/False选项。此选项可以使 撤消/重做 功能更加完善。默认值为true。
[custom_undo_redo_levels] 自定义最多可撤消操作的次数,默认是无限制。
[custom_undo_redo_keyboard_shortcuts] 如果使用,编辑器可以使用Ctrl+Z和Ctrl+Y快捷键来实现撤消和重做。默认允许。
[fix_content_duplication] True/False选项。此选项修正了MSIE中一个内容重复的bug。默认启用,但是为了兼容性也可以禁用(false)。
[directionality] 此选项可以设置像阿拉伯语等语言的文字方向。可能的值为:ltr, rtl。默认值: ltr(从左到右)。
[auto_cleanup_word] 如果启用,从MS office/Word粘贴的HTML将会自动被清理。此选项默认值为false。

注意:此操作当前仅支持MSIE。
[cleanup_on_startup] 如果启用,在编辑器初始化时文本域及组件将会被清理。默认值为false。
[inline_styles] 如果启用,像width,height,vspace,hspace和align等属性将会被风格属性替代。默认值为false。

在使用此选项时记得要把风格属性应用在正确的组件上。
[convert_newlines_to_brs] 如果启用,所有的\n(新行)将会在编辑器启动时被转换成
组件。此选项默认值为false。
[auto_reset_designmode] 因为在调用style.display的none/block方法来显示/隐藏某个TinyMCE编辑器的时候有bug,设计模式需要被重置。此选项一旦启用,当编辑器聚焦时,将自动重置。默认值为false。
[entities] 一张以字符代码来查找名称的表,该表中元素是以逗号分隔开的实体列表。该列表以奇数项、偶数项区分,其中奇数项是被用来转换的字符代码,偶数项是代表那个字符代码的实体名称。例如:"8205,zwj,8206,lrm,8207,rlm,173,shy"。
[cleanup_callback] 自定义清理函数。此选项能让用户在默认的清理基础上有所扩展。此函数调用跟默认的调用是分开的,它并不替换默认的清理函数,而仅仅是扩展。点击 查看更多细节。
主题的高级特定设置
[theme_advanced_toolbar_location] 此选项用来改变工具栏的默认位置。可能的值为:"top"和"bottom"。默认值是"bottom"。
[theme_advanced_toolbar_align] 此选项用来设置工具栏的对齐方式是left, center还是right。默认值是center。
[theme_advanced_styles] 此选项可以用来增加风格下拉框中的CSS类和名称。格式如下:"=<class>;.."。<BR><BR>如果没有指定此选项,主内容部分的CSS类将会被自动导入。<BR><BR>例如:"Header 1=header1;Header 2=header2;Header 3=header3"</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>[theme_advanced_buttons1]</STRONG></TD> <TD>工具栏上第一行要包含的按钮列表,以逗号分隔开。例如:"bold,italic,underline"。<BR><BR><BR><BR>允许的按钮名称如下:<BR><BR>bold, italic, underline, strikethrough, justifyleft, justifycenter, justifyright, justifyfull, styleselect, bullist, numlist, outdent, indent, undo,redo, link, unlink, image, cleanup, help, code, table, row_before, row_after, delete_row, separator, rowseparator, col_before, col_after, delete_col, hr, removeformat, sub, sup, formatselect, fontselect, fontsizeselect, forecolor,charmap,visualaid,spacer,cut,copy,paste</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>[theme_advanced_buttons2]</STRONG></TD> <TD>同上,差别在于指定的是工具栏第二行。</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>[theme_advanced_buttons3]</STRONG></TD> <TD>同上,差别在于指定的是工具栏第三行。</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>[theme_advanced_buttons<N>_add]</STRONG></TD> <TD>向工具栏上特定的第N行中增加额外的控制/按钮。例如:theme_advaned_buttons3_add : "iespell".</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>[theme_advanced_buttons<N>_add_before]</STRONG></TD> <TD>向工具栏上特定的第N行的默认按钮前面增加额外的控制/按钮。例如:theme_advaned_buttons3_add_before : "iespell"。</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>[theme_advanced_disable]</STRONG></TD> <TD>要禁用的按钮/组件的列表,以逗号分隔。例如:"formatselect".</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>[theme_advanced_source_editor_width]</STRONG></TD> <TD>源文件编辑器窗口的宽度。</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>[theme_advanced_source_editor_height]</STRONG></TD> <TD>源文件编辑器窗口的高度。</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>[theme_advanced_path_location]</STRONG></TD> <TD>组件路径列表的位置,可能的值为:"top"或"bottom"。默认值为:"none" </TD></TR> <TR bgColor=#ffffff> <TD><STRONG>[theme_advanced_blockformats]</STRONG></TD> <TD>formatselect列表要屏蔽的格式列表,以逗号分隔开。默认值:p,address,pre,h1,h2,h3,h4,h5,h6。</TD></TR></TBODY></TABLE><BR><BR>以下是一个较为复杂的初始化例子:<BR><BR><BR><BR> <TABLE cellSpacing=3 cellPadding=2 border=0> <TBODY> <TR> <TD><!-- tinyMCE --><BR><BR><script language="javascript" type="text/javascript" src="<FONT color=#990000>jscripts/tiny_mce/tiny_mce.js</FONT>"></script><BR><BR><script language="javascript" type="text/javascript"><BR><BR><FONT color=#000099>tinyMCE.init({<BR><BR>mode : "exact",<BR><BR>theme : "mytheme",<BR><BR>language : "se",<BR><BR>elements : "elm1,elm2"<BR><BR>});</FONT><BR><BR></script><BR><BR><!-- /tinyMCE --></TD></TR></TBODY></TABLE><BR><BR><SPAN><STRONG>函数</STRONG></SPAN><STRONG> (供高级使用)</STRONG><BR><BR><BR><BR>TinyMCE有一个全局实例,它能提供一些可从页面调用的公用函数。<BR><BR> <HR> <STRONG>语法:</STRONG> tinyMCE.triggerSave([skip_cleanup]);<BR><BR><BR><BR><STRONG>描述:</STRONG>进行清除操作,并将编辑器内容移回到表单域中。tinyMCE通过向表单提交方法中增加触发器来自动调用此函数。<BR><BR><BR><BR><STRONG>参数:</STRONG><BR><BR>[skip_cleanup] - 禁用保存触发器的清除功能,默认为false。(可选)<BR><BR><BR><BR><STRONG>返回:</STRONG> 无<BR><BR> <HR> <STRONG>语法:</STRONG> tinyMCE.updateContent(form_element_name);<BR><BR><BR><BR><STRONG>描述:</STRONG>将表单组件的内容转移到编辑器中,此操作的功能跟triggerSave()正好相反。当你想动态改变编辑器内容时可以使用此方法。<BR><BR><BR><BR><STRONG>参数:<BR><BR></STRONG>form_element_name - 要获取内容的组件所在表单的名称。<BR><BR><BR><BR><STRONG>返回:</STRONG> 无 <HR> <STRONG>语法:</STRONG> tinyMCE.execInstanceCommand(editor_id, command, [user_interface], [value]);<BR><BR><BR><BR><STRONG>描述:</STRONG>此方法通过editor_id参数找到某个编辑器实例,在此编辑器上执行一个命令。<BR><BR><BR><BR><STRONG>参数:</STRONG><BR><BR>editor_id - 编辑器实例的ID或者被替换后的组件id/名称。<BR><BR>command - 要执行的命令。查看execCommand函数以获取更多细节。<BR><BR>[user_interface] - 是否使用用户界面。<BR><BR>[value] - 执行命令时要传递的参数,例如:一个URL。<BR><BR><BR><BR><STRONG>返回:</STRONG> 无 <HR> <STRONG>语法:</STRONG> tinyMCE.execCommand(command, [user_interface], [value]);<BR><BR><BR><BR><STRONG>描述:</STRONG>此方法在选定编辑器中通过名称执行特定命令。<BR><BR><BR><BR><STRONG>参数:<BR><BR></STRONG>command - 要执行的命令,例如:"Bold" or "Italic"。。但是tinyMCE也有自身一些特殊的命令如下表所示:<BR><BR><BR><BR> <TABLE cellSpacing=1 cellPadding=3 bgColor=#111111> <TBODY> <TR bgColor=#ffffff> <TD width=150><STRONG>mceLink</STRONG></TD> <TD>打开插入链接对话框并插入链接。</TD></TR> <TR bgColor=#ffffff> <TD width=150><STRONG>mceImage</STRONG></TD> <TD>打开插入图像对话框并插入图像。</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>mceCleanup</STRONG></TD> <TD>从HTML代码中移除不需要的组件和属性。</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>mceHelp</STRONG></TD> <TD>打开文档页面。</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>mceInsertTable</STRONG></TD> <TD>在鼠标位置插入表格,默认尺寸为:2×2。如果execCommand函数中有指定value参数,它的格式必须为name/value形式的数组,其中 name有以下选项:cols, rows, border, cellspacing, cellpadding。border(边框)的默认大小为:0。</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>mceTableInsertRowBefore</STRONG></TD> <TD>在当前鼠标所在位置之前插入一行。</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>mceTableInsertRowAfter</STRONG></TD> <TD>在当前鼠标所在位置之后插入一行。</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>mceTableDeleteRow</STRONG></TD> <TD>将当前鼠标所在行删除。</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>mceTableInsertColBefore</STRONG></TD> <TD>在当前鼠标所在位置之前插入一列。</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>mceTableInsertColAfter</STRONG></TD> <TD>在当前鼠标所在位置之后插入一列。</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>mceTableDeleteCol</STRONG></TD> <TD>将当前鼠标所在列删除。</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>mceAddControl</STRONG></TD> <TD>向编辑器添加组件控制,此编辑器的id/name由value指定。</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>mceRemoveControl</STRONG></TD> <TD>通过editor_id名称来移除特定控制。value是要移除的editor_id(编辑器ID),编辑器ID格式如下:"mce_editor_<index>"。<BR><BR>也可以使用DOM组件的ID和表单名。</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>mceFocus</STRONG></TD> <TD>使以value的值为ID的编辑器获得焦点。编辑器ID格式如下:"mce_editor_<index>"。也可以使用DOM组件的ID和表单名。</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>mceSetCSSClass</STRONG></TD> <TD>设置CSS类属性,或者在选择框中创建新的span。value的值是要给选定组件指派的css类名或者要新创建的span组件名称。</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>mceInsertContent</STRONG></TD> <TD>在当前鼠标所在位置插入value的内容。</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>mceReplaceContent</STRONG></TD> <TD>将当前选定部分替换为value中的HTML代码。{$selection}变量由当前选定部分的文字内容替换。</TD></TR> <TR bgColor=#ffffff> <TD><STRONG>mceSetAttribute</STRONG></TD> <TD> <P>为当前选定组件设置属性。此命令的value应该是name/value数组,其参数如下:<BR><BR><BR><BR><STRONG>name</STRONG> - 要设置的属性名。<BR><BR><STRONG>value</STRONG> - 要设置的属性值。<BR><BR><STRONG>[targets]</STRONG> - 要增加属性的目标组件,默认为:p,img,span,div,td,h1,h2,h3,h4,h5,h6,pre,address。<BR><BR><BR><BR>使用示例:<BR><BR>tinyMCE.execCommand('mceSetAttribute',false,{name:'align',value:'right'});</P></TD></TR> <TR bgColor=#ffffff> <TD><STRONG>mceToggleVisualAid</STRONG></TD> <TD> <P>是否开启视觉帮助模式</P></TD></TR> <TR bgColor=#ffffff> <TD><STRONG>mceAnchor</STRONG></TD> <TD> <P>插入名称锚点。value是锚点的名称。</P></TD></TR> <TR bgColor=#ffffff> <TD><STRONG>mceResetDesignMode</STRONG></TD> <TD> <P>重置所有编辑器实例的设计模式状态。在Firefox中,当编辑器被放在制表符中或者用style.display="none/block"来控制隐显的时候,此命令非常有用。在编辑器重新显示时调用此命令。</P></TD></TR> <TR bgColor=#ffffff> <TD><STRONG>mceSelectNode</STRONG></TD> <TD> <P>选定value指定的节点/组件。同时此命令会使编辑器滚动到此组件所在位置。</P></TD></TR> <TR bgColor=#ffffff> <TD><STRONG>mceSelectNodeDepth</STRONG></TD> <TD> <P>从当前节点以深度关系选择指定的节点/组件。所以0值会选定当前聚焦的节点。同时此命令会使编辑器滚动到此组件所在位置。</P></TD></TR></TBODY></TABLE><BR><BR>user_interface - 申明某命令是否会显示用户界面。True/False选项。<BR><BR>value - 要传递给命令的值。例如,插入链接时,它就是链接的URL。<BR><BR><BR><BR><STRONG>返回:</STRONG> 无<BR><BR><BR><BR><STRONG>示例:</STRONG><BR><BR> <TABLE cellSpacing=3 cellPadding=2 border=0> <TBODY> <TR> <TD><a href="<FONT color=#990000>javascript :tinymce.execCommand('Bold');</FONT>">[Do bold]</a></TD></TR></TBODY></TABLE> <HR> <STRONG>语法:</STRONG> tinyMCE.insertLink(href, target);<BR><BR><BR><BR><STRONG>描述:</STRONG>此方法在当前选定编辑器实例的鼠标位置插入一个链接,或者用新的数据来更新已有链接。当你创建自己的主题时,此方法应在插入链接的弹出窗口中的OK按钮按下时被调用。<BR><BR><BR><BR><STRONG>参数:<BR><BR></STRONG>href - 链接的地址/URL。<BR><BR>target - 链接的目标。<BR><BR><BR><BR><STRONG>返回:</STRONG> 无 <HR> <STRONG>语法:</STRONG> tinyMCE.insertImage(src, alt, border, hspace, vspace, width, height, align, title, onmouseover, onmouseout);<BR><BR><BR><BR><STRONG>描述:</STRONG>此方法在当前选定编辑器实例的鼠标位置插入图像,或者用新的数据来更新已有图像。当你创建自己的主题时,此方法应在插入图像的弹出窗口中的OK按钮按下时被调用。<BR><BR><BR><BR><STRONG>参数:<BR><BR></STRONG>src - 图像地址。<BR><BR>alt - 图片的替代文字。<BR><BR>border - 图像边框。<BR><BR>hspace - 图像水平间距。<BR><BR>vspace - 图像垂直间距。<BR><BR>width - 图像宽。<BR><BR>height - 图像高。<BR><BR>align - 图像对齐方式。<BR><BR>title - 图像链接的标题。<BR><BR>onmouseover - 图像在鼠标放上去时的事件处理。<BR><BR>onmouseout - 图像在鼠标移开时的事件处理。<BR><BR><BR><BR><STRONG>返回:</STRONG> 无 <HR> <STRONG>语法:</STRONG> tinyMCE.triggerNodeChange();<BR><BR><BR><BR><STRONG>描述:</STRONG>当编辑器发生外部变化时此方法被调用。然后此方法回调主题的"handleNodeChangeCallback"方法。<BR><BR><BR><BR><STRONG>参数: </STRONG>None<BR><BR><BR><BR><STRONG>返回:</STRONG> 无 <HR> <STRONG>语法:</STRONG> tinyMCE.getContent();<BR><BR><BR><BR><STRONG>描述:</STRONG>此方法返回当前选定编辑器中的HTML内容。如果没有任何选定编辑器,该方法返回null。<BR><BR><BR><BR><STRONG>参数: </STRONG>None<BR><BR><BR><BR><STRONG>返回:</STRONG>当前选定编辑器中的HTML内容或者null。 <HR> <STRONG>语法:</STRONG> tinyMCE.setContent(html);<BR><BR><BR><BR><STRONG>描述:</STRONG>此方法设定当前选定编辑器的HTML内容。<BR><BR><BR><BR><STRONG>参数:<BR><BR></STRONG>html - 要设定的HTML源代码。<BR><BR><BR><BR><STRONG>返回:</STRONG> None. <HR> <STRONG>语法:</STRONG> tinyMCE.getEditorInstance(editor_id);<BR><BR><BR><BR><STRONG>描述:</STRONG>此方法通过editor_id返回某个编辑器实例。<BR><BR><BR><BR><STRONG>参数:<BR><BR></STRONG>editor_id - 要获取的编辑器实例。<BR><BR><BR><BR><STRONG>返回:</STRONG>编辑器实例(TinyMCEControl)。 <HR> <STRONG>语法:</STRONG> tinyMCE.importThemeLanguagePack([theme]);<BR><BR><BR><BR><STRONG>描述:</STRONG>此方法导入主题中特定的语言包。自定义主题中可以调用此方法。<BR><BR><BR><BR><STRONG>参数:</STRONG><BR><BR>[theme] - 当前主题名称。此选项可选,默认为全局的"theme"设定。此参数在主题插件中非常有用。<BR><BR><BR><BR><STRONG>返回:</STRONG> None. <HR> <STRONG>语法:</STRONG> tinyMCE.importPluginLanguagePack(plugin, valid_languages);<BR><BR><BR><BR><STRONG>描述:</STRONG>此方法导入插件中特定的语言包。自定义插件中可以调用此方法。<BR><BR><BR><BR><STRONG>参数:</STRONG><BR><BR>plugin - 当前插件的名称。<BR><BR>valid_languages - 以逗号分隔的所支持语言包列表。<BR><BR><BR><BR><STRONG>返回:</STRONG> None. <HR> <STRONG>语法:</STRONG> tinyMCE.applyTemplate(html);<BR><BR><BR><BR><STRONG>描述:</STRONG>此方法替换主题中的设置及语言变量。<BR><BR><BR><BR><STRONG>参数:</STRONG> <BR><BR>html - 要替换主题变量的HTML代码。<BR><BR><BR><BR><STRONG>返回:</STRONG> 转换后的HTML代码。 <HR> <STRONG>语法:</STRONG> tinyMCE.openWindow(template, [args]);<BR><BR><BR><BR><STRONG>描述:</STRONG>此方法通过从指定的template参数中获取width, height及html数据来打开新窗口。数组参数args中包含要替换的变量名。<BR><BR><BR><BR>还有一些自定义的窗口参数:<BR><BR>mce_replacevariables - 启用/禁用HTML文档中的语言/变量替换。默认启用。<BR><BR>mce_windowresize - 启用/禁用弹出窗口的自动resize特征,默认启用。<BR><BR><BR><BR><STRONG>参数:</STRONG> <BR><BR>template - Name/Value数组,以width, height, html和file为键。<BR><BR>[args] - 包含要替换变量名的Name/Value数组。模板文件中的键值变量被参数列表所替换。<BR><BR>例如:image.php?src={$src}被替换为:image.php?src=image.gif。<BR><BR><BR><BR><STRONG>返回:</STRONG> None. <HR> <STRONG>语法:</STRONG> tinyMCE.getWindowArg(name, [default_value]);<BR><BR><BR><BR><STRONG>描述:</STRONG>此方法根据name返回窗口参数,它可以用在主题中的弹出窗口中,以获取对话框中的参数。<BR><BR><BR><BR><STRONG>参数:</STRONG> <BR><BR>name - 要获取的窗口参数的名称。<BR><BR>[default_value] - 窗口参数丢失时返回的默认值。<BR><BR><BR><BR><STRONG>返回:</STRONG> 窗口参数的值。 <HR> <STRONG>语法:</STRONG> tinyMCE.setWindowArg(name, value);<BR><BR><BR><BR><STRONG>描述:</STRONG>此方法根据name设定窗口参数,例如它在某插件调用其他插件时非常有用。<BR><BR><BR><BR><STRONG>参数:</STRONG> <BR><BR>name - 要设置的窗口参数。<BR><BR>value - 窗口参数中要设置的值。<BR><BR><BR><BR><STRONG>返回:</STRONG> 窗口参数值。 <HR> <STRONG>语法:</STRONG> tinyMCE.getParam(name, [default_value], [strip_whitespace]);<BR><BR><BR><BR><STRONG>描述:</STRONG>此方法返回TinyMCE的配置参数。<BR><BR><BR><BR><STRONG>参数:</STRONG> <BR><BR>name - 要获取的窗口参数名。<BR><BR>[default_value] - 窗口参数丢失时返回的默认值。<BR><BR>[strip_whitespace] - 如果为真,所有返回值中的空白字符将会被除去。默认:false。<BR><BR><BR><BR><STRONG>返回:</STRONG>TinyMCE配置参数。</DIV></DIV></TD></TR></TBODY></TABLE></DIV></DIV> </div> <!-- <div class="Blog_con3_1">管理员在2009年8月13日编辑了该文章文章。</div> --> <div class="Blog_con2_1 Blog_con3_2"> <div> <!--<img src="/image/default/tu_8.png">--> <!-- JiaThis Button BEGIN --> <div class="bdsharebuttonbox"><A class=bds_more href="#" data-cmd="more"></A><A class=bds_qzone title=分享到QQ空间 href="#" data-cmd="qzone"></A><A class=bds_tsina title=分享到新浪微博 href="#" data-cmd="tsina"></A><A class=bds_tqq title=分享到腾讯微博 href="#" data-cmd="tqq"></A><A class=bds_renren title=分享到人人网 href="#" data-cmd="renren"></A><A class=bds_weixin title=分享到微信 href="#" data-cmd="weixin"></A></div> <script>window._bd_share_config={"common":{"bdSnsKey":{},"bdText":"","bdMini":"2","bdMiniList":false,"bdPic":"","bdStyle":"0","bdSize":"16"},"share":{}};with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='http://bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion='+~(-new Date()/36e5)];</script> <!-- JiaThis Button END --> </div> 阅读(9015) | 评论(3) | 转发(0) | <div class="HT_line3"></div> </div> <div class="Blog_con3_3"> <div><span id='digg_num'>0</span><a href="javascript:void(0)" id='digg' bid='122686' url='/blog/digg.html' ></a></div> <p>上一篇:<a href="/uid-429659-id-122685.html">php 发送邮件类</a></p> <p>下一篇:<a href="/uid-429659-id-122687.html">TinyMce介绍与使用心得</a></p> </div> </div> <!-- <div class="Blog_con3_4 Blog_con3_5"> <div class="Blog_tit2 Blog_tit7">热门推荐</div> <ul> <li><a href="" title="" target='blank' ></a></li> </ul> </div> --> </div> </div> <div class="Blog_right1_7" id='replyList'> <div class="Blog_tit3">给主人留下些什么吧!~~</div> <!--不包含引用--> <div class="Blog_right1_8"> <div class="Blog_right_img1"><a href='/uid/0.html' ><img src="http://account.chinaunix.net/api/avatar.php?uid=0" /></a></div> <div class="Blog_right_font1"> <p class="Blog_p5"><span><a href='/uid/0.html' ><span>chinaunix网友</span></a></span>2008-10-24 22:13:18</p> <p class="Blog_p6">www.lanry.com 谢谢转载</p> <div class="div1"><a href="javascript:void(0);" class="Blog_a10" toid='0' bid='122686' cid='86951' tname='chinaunix网友'>回复</a> | <a href="javascript:;" onclick="link(this);showErrorMsg('操作失败,您需要先登录!', '消息提示', 'http://account.chinaunix.net/login');" class='box_report'>举报</a></div> <!-- 评论占位框--> <div class='z_move_comment' style='display:none'> </div> </div> <div class="Blog_line1"></div> </div> <!--不包含引用--> <div class="Blog_right1_8"> <div class="Blog_right_img1"><a href='/uid/0.html' ><img src="http://account.chinaunix.net/api/avatar.php?uid=0" /></a></div> <div class="Blog_right_font1"> <p class="Blog_p5"><span><a href='/uid/0.html' ><span>chinaunix网友</span></a></span>2008-10-10 17:37:36</p> <p class="Blog_p6">好,很好使,谢谢楼主</p> <div class="div1"><a href="javascript:void(0);" class="Blog_a10" toid='0' bid='122686' cid='86953' tname='chinaunix网友'>回复</a> | <a href="javascript:;" onclick="link(this);showErrorMsg('操作失败,您需要先登录!', '消息提示', 'http://account.chinaunix.net/login');" class='box_report'>举报</a></div> <!-- 评论占位框--> <div class='z_move_comment' style='display:none'> </div> </div> <div class="Blog_line1"></div> </div> <!--不包含引用--> <div class="Blog_right1_8"> <div class="Blog_right_img1"><a href='/uid/0.html' ><img src="http://account.chinaunix.net/api/avatar.php?uid=0" /></a></div> <div class="Blog_right_font1"> <p class="Blog_p5"><span><a href='/uid/0.html' ><span>chinaunix网友</span></a></span>2008-03-06 18:03:47</p> <p class="Blog_p6">1233</p> <div class="div1"><a href="javascript:void(0);" class="Blog_a10" toid='0' bid='122686' cid='86980' tname='chinaunix网友'>回复</a> | <a href="javascript:;" onclick="link(this);showErrorMsg('操作失败,您需要先登录!', '消息提示', 'http://account.chinaunix.net/login');" class='box_report'>举报</a></div> <!-- 评论占位框--> <div class='z_move_comment' style='display:none'> </div> </div> <div class="Blog_line1"></div> </div> <!-- 评论分页--> <div class="Blog_right1_6 Blog_right1_12"> </div> <!-- 评论分页--> <div class="Blog_right1_10" style="display:none"> <div class="Blog_tit3">评论热议</div> <!--未登录 --> <div class="Blog_right1_8"> <div class="nologin_con1"> 请登录后评论。 <p><a href="http://account.chinaunix.net/login" onclick="link(this)">登录</a> <a href="http://account.chinaunix.net/register?url=http%3a%2f%2fblog.chinaunix.net">注册</a></p> </div> </div> </div> <div style="text-align:center;margin-top:10px;"> <script type="text/javascript" smua="d=p&s=b&u=u3118759&w=960&h=90" src="//www.nkscdn.com/smu0/o.js"></script> </div> </div> </div> </div> <input type='hidden' id='report_url' value='/blog/ViewReport.html' /> <script type="text/javascript"> //测试字符串的长度 一个汉字算2个字节 function mb_strlen(str) { var len=str.length; var totalCount=0; for(var i=0;i<len;i++) { var c = str.charCodeAt(i); if ((c >= 0x0001 && c <= 0x007e) || (0xff60<=c && c<=0xff9f)) { totalCount++; }else{ totalCount+=2; } } return totalCount; } /* var Util = {}; Util.calWbText = function (text, max){ if(max === undefined) max = 500; var cLen=0; var matcher = text.match(/[^\x00-\xff]/g), wlen = (matcher && matcher.length) || 0; //匹配url链接正则 http://*** var pattern = /http:\/\/([\w-]+\.)+[\w-]+(\/*[\w-\.\/\?%&=][^\s^\u4e00-\u9fa5]*)?/gi; //匹配的数据存入数组 var arrPt = new Array(); var i = 0; while((result = pattern.exec(text)) != null){ arrPt[i] = result[0]; i++; } //替换掉原文本中的链接 for(var j = 0;j<arrPt.length;j++){ text = text.replace(arrPt[j],""); } //减掉链接所占的长度 return Math.floor((max*2 - text.length - wlen)/2 - 12*i); }; */ var allowComment = '0'; //举报弹出层 function showJuBao(url, cid){ $.cover(false); asyncbox.open({ id : 'report_thickbox', url : url, title : '举报违规', width : 378, height : 240, scroll : 'no', data : { 'cid' : cid, 'idtype' : 2 , 'blogurl' : window.location.href }, callback : function(action){ if(action == 'close'){ $.cover(false); } } }); } $(function(){ //创建管理员删除的弹出层 $('#admin_article_del').click(function(){ $.cover(false); asyncbox.open({ id : 'class_thickbox', html : '<div class="HT_layer3_1"><ul><li class="HT_li1">操作原因:<select class="HT_sel7" id="del_type" name="del_type"><option value="广告文章">广告文章</option><option value="违规内容">违规内容</option><option value="标题不明">标题不明</option><option value="文不对题">文不对题</option></select></li><li class="HT_li1" ><input class="HT_btn4" id="admin_delete" type="button" /></li></ul></div>', title : '选择类型', width : 300, height : 150, scroll : 'no', callback : function(action){ if(action == 'close'){ $.cover(false); } } }); }); $('#admin_delete').live('click' , function(){ ///blog/logicdel/id/3480184/url/%252Fblog%252Findex.html.html var type = $('#del_type').val(); var url = '/blog/logicdel/id/122686/url/%252Fuid%252F429659.html.html'; window.location.href= url + '?type=' + type; }); //顶 js中暂未添加&过滤 $('#digg').live('click' , function(){ if(isOnLine == '' ) { //showErrorMsg('登录之后才能进行此操作' , '消息提示'); showErrorMsg('操作失败,您需要先登录!', '消息提示', 'http://account.chinaunix.net/login'); return false; } var bid = $('#digg').attr('bid'); var url = $('#digg').attr('url'); var digg_str = $.cookie('digg_id'); if(digg_str != null) { var arr= new Array(); //定义一数组 arr = digg_str.split(","); //字符分割 for( i=0 ; i < arr.length ; i++ ) { if(bid == arr[i]) { showErrorMsg('已经赞过该文章', '消息提示'); return false; } } } $.ajax({ type:"POST", url:url, data: { 'bid' : bid }, dataType: 'json', success:function(msg){ if(msg.error == 0) { var num = parseInt($('#digg_num').html(),10); num += 1; $('#digg_num').html(num); $('#digg').die(); if(digg_str == null) { $.cookie('digg_id', bid, {expires: 30 , path: '/'}); } else { $.cookie('digg_id', digg_str + ',' + bid, {expires: 30 , path: '/'}); } showSucceedMsg('谢谢' , '消息提示'); } else if(msg.error == 1) { //showErrorMsg(msg.error_content , '消息提示'); showErrorMsg('操作失败,您需要先登录!', '消息提示', 'http://account.chinaunix.net/login'); } else if(msg.error == 2) { showErrorMsg(msg.error_content , '消息提示'); } } }); }); //举报弹出层 /*$('.box_report').live('click' , function(){ if(isOnLine == '' ) { //showErrorMsg('登录之后才能进行此操作' , '消息提示'); showErrorMsg('操作失败,您需要先登录!', '消息提示', 'http://account.chinaunix.net/login'); return false; } var url = $('#report_url').val(); var cid = $(this).attr('cid'); $.cover(false); asyncbox.open({ id : 'report_thickbox', url : url, title : '举报违规', width : 378, height : 240, scroll : 'no', data : { 'cid' : cid, 'idtype' : 2 }, callback : function(action){ if(action == 'close'){ $.cover(false); } } }); });*/ //评论相关代码 //点击回复显示评论框 $('.Blog_a10').live('click' , function(){ if(isOnLine == '' ) { //showErrorMsg('登录之后才能进行此操作' , '消息提示'); showErrorMsg('操作失败,您需要先登录!', '消息提示', 'http://account.chinaunix.net/login'); return false; } if(allowComment == 1) { showErrorMsg('该博文不允许评论' , '消息提示'); return false; } var tid = $(this).attr('toid');//留言作者id var bid = $(this).attr('bid');//blogid var cid = $(this).attr('cid');//留言id var tname = $(this).attr('tname'); var tpl = '<div class="Blog_right1_9">'; tpl += '<div class="div2">'; tpl += '<textarea name="" cols="" rows="" class="Blog_ar1_1" id="rmsg">文明上网,理性发言...</textarea>'; tpl += '</div>'; tpl += '<div class="div3">'; tpl += '<div class="div3_2"><a href="javascript:void(0);" class="Blog_a11" id="quota_sbumit" url="/Comment/PostComment.html" tid="'+tid+'" bid="'+bid+'" cid="'+cid+'" tname="'+tname+'" ></a><a href="javascript:void(0)" id="qx_comment" class="Blog_a12"></a></div>'; tpl += '<div class="div3_1"><a href="javascript:void(0);" id="mface"><span></span>表情</a></div>'; tpl += '<div class="clear"></div>'; tpl += '</div>'; tpl += '</div>'; $('.z_move_comment').html(''); $(this).parents('.Blog_right1_8').find('.z_move_comment').html(tpl).show(); }); //引用的评论提交 $('#quota_sbumit').live('click' , function(){ if(isOnLine == '' ) { //showErrorMsg('登录之后才能进行此操作' , '消息提示'); showErrorMsg('操作失败,您需要先登录!', '消息提示', 'http://account.chinaunix.net/login'); return false; } var bid = $(this).attr('bid'); var tid = $(this).attr('tid');//被引用人的id var qid = $(this).attr('cid');//引用的id var url = $(this).attr('url'); var text = $('#rmsg').val(); var tname = $(this).attr('tname'); if(text == '' || text=='文明上网,理性发言...') { showErrorMsg('评论内容不能为空!' , '消息提示'); return false; } else { if(mb_strlen(text) > 1000){ showErrorMsg('评论内容不能超过500个汉字' , '消息提示'); return false; } } $.ajax({ type: "post", url: url , data: {'bid': bid , 'to' : tid , 'qid' : qid , 'text': text , 'tname' : tname }, dataType: 'json', success: function(data){ if(data.code == 1){ var tpl = '<div class="Blog_right1_8">'; tpl+= '<div class="Blog_right_img1"><a href="' +data.info.url+ '" >' + data.info.header + '</a></div>'; tpl+= '<div class="Blog_right_font1">'; tpl+= '<p class="Blog_p5"><span><a href="' +data.info.url+ '" >' + data.info.username + '</a></span>' + data.info.dateline + '</p>'; tpl+= '<p class="Blog_p7"><a href="' + data.info.quota.url + '">' + data.info.quota.username + '</a>:'+ data.info.quota.content + '</p>'; tpl+= '<p class="Blog_p8">' + data.info.content + '</p><span class="span_text1"><a href="javascript:void(0);" class="Blog_a10" toid=' + data.info.fuid + ' bid=' + data.info.bid + ' cid=' + data.info.cid + ' tname = ' + data.info.username + ' >回复</a> |  <a class="comment_del_mark" style="cursor:pointer" url="' + data.info.delurl + '" >删除</a> |  <a href="javascript:showJuBao(\'/blog/ViewReport.html\','+data.info.cid+')" class="box_report" cid="' + data.info.cid + '" >举报</a></span></div>'; tpl+= '<div class="z_move_comment" style="display:none"></div>'; tpl+= '<div class="Blog_line1"></div></div>'; $('#replyList .Blog_right1_8:first').before(tpl); $('.z_move_comment').html('').hide(); } else if(data.code == -1){ //showErrorMsg(data.info , '消息提示'); showErrorMsg('操作失败,您需要先登录!', '消息提示', 'http://account.chinaunix.net/login'); } }, error: function(){//请求出错处理 } }); }); //底部发表评论 $('#submitmsg').click(function(){ if(allowComment == 1) { showErrorMsg('该博文不允许评论' , '消息提示'); return false; } var bid = $(this).attr('bid'); var toid = $(this).attr('toid'); var text = $('#reply').val(); var url = $(this).attr('url'); if(text == '' || text=='文明上网,理性发言...') { showErrorMsg('评论内容不能为空!' , '消息提示'); return false; } else { if(mb_strlen(text) > 1000){ showErrorMsg('评论内容不能超过500个汉字' , '消息提示'); return false; } } $.ajax({ type: "post", url: url , data: {'bid': bid , 'to' : toid ,'text': text}, dataType: 'json', success: function(data){ if(data.code == 1) { var tpl = '<div class="Blog_right1_8">'; tpl += '<div class="Blog_right_img1"><a href="' +data.info.url+ '" >' + data.info.header + '</a></div>'; tpl += '<div class="Blog_right_font1">'; tpl += '<p class="Blog_p5"><span><a href="' +data.info.url+ '" >' + data.info.username + '</a></span>' + data.info.dateline + '</p>'; tpl += '<p class="Blog_p6">' + data.info.content + '</p>'; tpl += '<div class="div1"><a href="javascript:void(0);" class="Blog_a10" toid=' + data.info.fuid + ' bid=' + data.info.bid + ' cid=' + data.info.cid + '>回复</a> |  <a class="comment_del_mark" style="cursor:pointer" url="' + data.info.delurl + '">删除</a> |  <a href="javascript:showJuBao(\'/blog/ViewReport.html\','+data.info.cid+')" class="box_report" cid="' + data.info.cid + '">举报</a></div>'; tpl += '<div class="z_move_comment" style="display:none"></div>'; tpl += '</div><div class="Blog_line1"></div></div>'; $('.Blog_tit3:first').after(tpl); $('#reply').val('文明上网,理性发言...'); } else if(data.code == -1) { showErrorMsg(data.info , '消息提示'); } }, error: function(){//请求出错处理 } }); }); //底部评论重置 $('#reset_comment').click(function(){ $('#reply').val('文明上网,理性发言...'); }); //取消回复 $('#qx_comment').live('click' , function(){ $('.z_move_comment').html('').hide(); }); $('#rmsg, #reply').live({ focus:function(){ if($(this).val() == '文明上网,理性发言...'){ $(this).val(''); } }, blur:function(){ if($(this).val() == ''){ $(this).val('文明上网,理性发言...'); } } }); //删除留言确认 $('.comment_del_mark').live('click' , function(){ var url = $(this).attr('url'); asyncbox.confirm('删除留言','确认', function(action){ if(action == 'ok') { location.href = url; } }); }); //删除时间确认 $('.del_article_id').click(function(){ var delurl = $(this).attr('delurl'); asyncbox.confirm('删除文章','确认', function(action){ if(action == 'ok') { location.href = delurl; } }); }); /* //字数限制 $('#rmsg, #reply').live('keyup', function(){ var id = $(this).attr('id'); var left = Util.calWbText($(this).val(), 500); var eid = '#errmsg'; if(id == 'reply') eid = '#rerrmsg'; if (left >= 0) $(eid).html('您还可以输入<span>' + left + '</span>字'); else $(eid).html('<font color="red">您已超出<span>' + Math.abs(left) + '</span>字 </font>'); }); */ //加载表情 $('#face').qqFace({id : 'facebox1', assign : 'reply', path : '/image/qqface/'}); $('#mface').qqFace({id : 'facebox', assign : 'rmsg', path:'/image/qqface/'}); /* $('#class_one_id').change(function(){ alert(123213); var id = parseInt($(this).val() , 10); if(id == 0) return false; $('.hidden_son_class span').each(function( index , dom ){ if( dom.attr('cid') == id ) { } }); }); */ //转载文章 var turn_url = "/blog/viewClassPart.html"; $('#repost_bar').click(function(){ if(isOnLine == '' ) { //showErrorMsg('登录之后才能进行此操作' , '消息提示'); showErrorMsg('操作失败,您需要先登录!', '消息提示', 'http://account.chinaunix.net/login'); return false; } var id = $(this).attr('bid'); asyncbox.open({ id : 'turn_class_thickbox', url : turn_url, title : '转载文章', width : 330, height : 131, scroll : 'no', data : { 'id' : id }, callback : function(action){ if(action == 'close'){ $.cover(false); } } }); }); /* //转发文章 $('#repost_bar').live('click' , function(){ if(isOnLine == '' ) { //showErrorMsg('登录之后才能进行此操作' , '消息提示'); showErrorMsg('操作失败,您需要先登录!', '消息提示', 'http://account.chinaunix.net/login'); return false; } var bid = $(this).attr('bid'); var url = $(this).attr('url'); asyncbox.confirm('转载文章','确认', function(action){ if(action == 'ok'){ $.ajax({ type:"POST", url:url, data: { 'bid' : bid }, dataType: 'json', success:function(msg){ if(msg.error == 0){ showSucceedMsg('转发成功!', '消息提示'); }else if(msg.error == 1){ //location.href = '/index.php?r=site/login'; showErrorMsg('操作失败,您需要先登录!', '消息提示', 'http://account.chinaunix.net/login'); }else{ showErrorMsg(msg.error_content, '消息提示'); } } }); } }); }); */ }); </script> <!--该部分应该放在输出代码块的后面才起作用 --> <script type="text/javascript"> SyntaxHighlighter.autoloader( 'applescript /highlight/scripts/shBrushAppleScript.js', 'actionscript3 as3 /highlight/scripts/shBrushAS3.js', 'bash shell /highlight/scripts/shBrushBash.js', 'coldfusion cf /highlight/scripts/shBrushColdFusion.js', 'cpp c /highlight/scripts/shBrushCpp.js', 'c# c-sharp csharp /highlight/scripts/shBrushCSharp.js', 'css /highlight/scripts/shBrushCss.js', 'delphi pascal /highlight/scripts/shBrushDelphi.js', 'diff patch pas /highlight/scripts/shBrushDiff.js', 'erl erlang /highlight/scripts/shBrushErlang.js', 'groovy /highlight/scripts/shBrushGroovy.js', 'java /highlight/scripts/shBrushJava.js', 'jfx javafx /highlight/scripts/shBrushJavaFX.js', 'js jscript javascript /highlight/scripts/shBrushJScript.js', 'perl pl /highlight/scripts/shBrushPerl.js', 'php /highlight/scripts/shBrushPhp.js', 'text plain /highlight/scripts/shBrushPlain.js', 'py python /highlight/scripts/shBrushPython.js', 'ruby rails ror rb /highlight/scripts/shBrushRuby.js', 'scala /highlight/scripts/shBrushScala.js', 'sql /highlight/scripts/shBrushSql.js', 'vb vbnet /highlight/scripts/shBrushVb.js', 'xml xhtml xslt html /highlight/scripts/shBrushXml.js' ); SyntaxHighlighter.all(); function code_hide(id){ var code = document.getElementById(id).style.display; if(code == 'none'){ document.getElementById(id).style.display = 'block'; }else{ document.getElementById(id).style.display = 'none'; } } </script> <!--回顶部js2011.12.30--> <script language="javascript"> lastScrollY=0; function heartBeat(){ var diffY; if (document.documentElement && document.documentElement.scrollTop) diffY = document.documentElement.scrollTop; else if (document.body) diffY = document.body.scrollTop else {/*Netscape stuff*/} percent=.1*(diffY-lastScrollY); if(percent>0)percent=Math.ceil(percent); else percent=Math.floor(percent); document.getElementById("full").style.top=parseInt(document.getElementById("full").style.top)+percent+"px"; lastScrollY=lastScrollY+percent; if(lastScrollY<200) { document.getElementById("full").style.display="none"; } else { document.getElementById("full").style.display="block"; } } var gkuan=document.body.clientWidth; var ks=(gkuan-960)/2-30; suspendcode="<div id=\"full\" style='right:-30px;POSITION:absolute;TOP:500px;z-index:100;width:26px; height:86px;cursor:pointer;'><a href=\"javascript:void(0)\" onclick=\"window.scrollTo(0,0);\"><img src=\"\/image\/top.png\" /></a></div>" document.write(suspendcode); window.setInterval("heartBeat()",1); </script> <!-- footer --> <div class="Blog_footer" style='clear:both'> <div><a href="http://www.chinaunix.net/about/index.shtml" target="_blank" rel="nofollow">关于我们</a> | <a href="http://www.it168.com/bottomfile/it168.shtml" target="_blank" rel="nofollow">关于IT168</a> | <a href="http://www.chinaunix.net/about/connect.html" target="_blank" rel="nofollow">联系方式</a> | <a href="http://www.chinaunix.net/about/service.html" target="_blank" rel="nofollow">广告合作</a> | <a href="http://www.it168.com//bottomfile/flgw/fl.htm" target="_blank" rel="nofollow">法律声明</a> | <a href="http://account.chinaunix.net/register?url=http%3a%2f%2fblog.chinaunix.net" target="_blank" rel="nofollow">免费注册</a> <p>Copyright 2001-2010 ChinaUnix.net All Rights Reserved 北京皓辰网域网络信息技术有限公司. 版权所有 </p> <div>感谢所有关心和支持过ChinaUnix的朋友们 <p><a href="http://beian.miit.gov.cn/">16024965号-6 </a></p> </div> </div> </div> </div> <script language="javascript"> //全局错误提示弹出框 function showErrorMsg(content, title, url){ var url = url || ''; var title = title || '消息提示'; var html = ''; html += '<div class="HT_layer3_1 HT_layer3_2"><ul><li><p><span class="login_span1"></span>' + content + '</p></li>'; if(url == '' || url.length == 0){ html += '<li class="HT_li1"><input type="button" class="HT_btn2" onclick=\'close_windows("error_msg")\'></li>'; } else { html += '<li class="HT_li1"><input type="button" class="login_btn1" onclick="location.href=\'' + url + '\'"></li>'; } html += '</ul></div>'; $.cover(true); asyncbox.open({ id: 'error_msg', title : title, html : html, 'callback' : function(action){ if(action == 'close'){ $.cover(false); } } }); } //全局正确提示 function showSucceedMsg(content, title , url ){ var url = url || ''; var title = title || '消息提示'; var html = ''; html += '<div class="HT_layer3_1 HT_layer3_2"><ul><li><p><span class="login_span2"></span>' + content + '</p></li>'; if(url == '' || url.length == 0){ html += '<li class="HT_li1"><input type="button" class="HT_btn2" onclick=\'close_windows("error_msg")\'></li>'; } else { html += '<li class="HT_li1"><input type="button" class="HT_btn2" onclick="location.href=\'' + url + '\'"></li>'; } html += '</ul></div>'; $.cover(true); asyncbox.open({ id: 'error_msg', title : title, html : html, 'callback' : function(action){ if(action == 'close'){ $.cover(false); } } }); } //关闭指定id的窗口 function close_windows(id){ $.cover(false); $.close(id); } //公告 var tID; var tn; // 高度 var nStopTime = 5000; // 不同行间滚动时间隔的时间,值越小,移动越快 var nSpeed = 50; // 滚动时,向上移动一像素间隔的时间,值越小,移动越快 var isMove = true; var nHeight = 25; var nS = 0; var nNewsCount = 3; /** * n 用于表示是否为第一次运行 **/ function moveT(n) { clearTimeout(tID) var noticev2 = document.getElementById("noticev2") nS = nSpeed; // 只在第一次调用时运行,初始化环境(有没有参数) if (n) { // 设置行高 noticev2.style.lineHeight = nHeight + "px"; // 初始化显示位置 tn = 0; // 刚进入时在第一行停止时间 nS = nStopTime; } // 判断鼠标是否指向层 if (isMove) { // 向上移动一像素 tn--; // 如果移动到最下面一行了,则移到顶行 if (Math.abs(tn) == nNewsCount * nHeight) { tn = 0; } // 设置位置 noticev2.style.marginTop = tn + "px"; // 完整显示一行时,停止一段时间 if (tn % nHeight == 0) { nS = nStopTime; } } tID = setTimeout("moveT()", nS); } moveT(1); // 此处可以传入任何参数 </script> <script type="text/javascript"> // var _gaq = _gaq || []; // _gaq.push(['_setAccount', 'UA-20237423-2']); // _gaq.push(['_setDomainName', '.chinaunix.net']); // _gaq.push(['_trackPageview']); // // (function() { // var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; // ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; // var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); // })(); </script> <script type="text/javascript"> var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://"); document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3F0ee5e8cdc4d43389b3d1bfd76e83216b' type='text/javascript'%3E%3C/script%3E")); function link(t){ var href= $(t).attr('href'); href+="?url="+encodeURIComponent(location.href); $(t).attr('href',href); //setCookie("returnOutUrl", location.href, 60, "/"); } </script> <script type="text/javascript" src="/js/jquery.qqFace.js"></script> </body> </html>