<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>精東·博客 &#187; javascript</title>
	<atom:link href="http://www.wemvc.com/tag/javascript/feed" rel="self" type="application/rss+xml" />
	<link>http://www.wemvc.com</link>
	<description>男人的胸怀是委屈撑大的。</description>
	<lastBuildDate>Sun, 29 Aug 2010 04:21:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>推荐几个很好的开源所见即所得编辑器</title>
		<link>http://www.wemvc.com/255.html</link>
		<comments>http://www.wemvc.com/255.html#comments</comments>
		<pubDate>Wed, 27 Aug 2008 02:11:21 +0000</pubDate>
		<dc:creator>精东</dc:creator>
				<category><![CDATA[程序开发]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[编辑器]]></category>

		<guid isPermaLink="false">http://www.wemvc.com/?p=255</guid>
		<description><![CDATA[
TinyMCE
TinyMCE 是一个开源，纯JavaScript HTML WYSIWYG编辑器。它能够把HTML TEXTAREA或其它HTML标签转换成Rich编辑器。TinyMCE非常易于集成到其它内容管理系统中。可以通过外观/主题和插件来定制满足自己需 求的编辑器。提供汉化语言包。多浏览器支持：Mozilla、MSIE、FireFox、Opera和Safari。此外你还可以很方便地使用Ajax来 保存和加载内容。

TinyMCE


Yahoo! UI : Rich Text Editor

来自Yahoo! UI库中一个功能强大的Rich文本编辑器。



Yahoo! UI : Rich Text Editor

Control.Editor

Control.Editor是一个基于Mootools开发的WYSIWYG Editor。

Control.Editor

NicEdit

NicEdit是一个轻量级，跨平台的Inline Content Editor。NicEdit能够让任何 element/div变成可编辑或者能够把标准的textareas转换成Rich文本编辑器。

NicEdit

Damn Small Rich Text Editor

基于jQuery开发，能够从IFRAME元素创建一个Rich Text Editor。提供了所有基本的Rich Text功能，可设置文本编辑区大小，Ajax上传图片等。

Damn Small Rich Text Editor



openWYSIWYG

纯javascript开发的，跨浏览器WYSIWYG Editor。只一行简单的代码就能够将&#60;textarea&#62;标签转换成一个强大的WYSIWYG editor。


openWYSIWYG


jwysiwyg

WYSIWYG jQuery插件。整个编辑器文件大小只有17Kb。

jwysiwyg

]]></description>
		<wfw:commentRss>http://www.wemvc.com/255.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>js让网页标题闪动效果</title>
		<link>http://www.wemvc.com/52.html</link>
		<comments>http://www.wemvc.com/52.html#comments</comments>
		<pubDate>Tue, 12 Aug 2008 10:28:09 +0000</pubDate>
		<dc:creator>精东</dc:creator>
				<category><![CDATA[程序开发]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[标题闪动]]></category>

		<guid isPermaLink="false">http://www.wemvc.com/?p=52</guid>
		<description><![CDATA[例子一：
var t=false;
setInterval("flash_title()",300);
function flash_title(){
if(t){
document.title='☆';
t=false;
}else{
document.title='★';
t=true;
}
}
例子二：
step=0
function flash_title()
{
step++
if (step==3) {step=1}
if (step==1) {document.title="..::&#38;lt;&#38;lt;&#38;lt;&#38;lt;&#38;lt;&#38;lt;&#38;lt;&#38;lt;&#38;lt;&#38;lt;&#38;lt;&#38;lt;&#38;lt;&#38;lt;&#38;lt;&#38;lt;::.."}
if (step==2) {document.title="..::&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#38;gt;::.."}
setTimeout("flash_title()",500); //刷新时间
}
flash_title()
]]></description>
		<wfw:commentRss>http://www.wemvc.com/52.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>常用javascript举例</title>
		<link>http://www.wemvc.com/42.html</link>
		<comments>http://www.wemvc.com/42.html#comments</comments>
		<pubDate>Mon, 11 Aug 2008 16:38:57 +0000</pubDate>
		<dc:creator>精东</dc:creator>
				<category><![CDATA[程序开发]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.wemvc.com/?p=42</guid>
		<description><![CDATA[1.document.write( &#8221; &#8220;); 输出语句
2.JS中的注释为//
3.传统的HTML文档顺序是:document- &#62;html- &#62;(head,body)
4.一个浏览器窗口中的DOM顺序是:window- &#62;(navigator,screen,history,location,document)
5.得到表单中元素的名称和值:document.getElementById( &#8220;表单中元素的ID號 &#8220;).name(或value)
6.一个小写转大写的JS: document.getElementById( &#8220;output &#8220;).value = document.getElementById( &#8220;input &#8220;).value.toUpperCase();
7.JS中的值类型:String,Number,Boolean,Null,Object,Function
8.JS中的字符型转换成数值型:parseInt(),parseFloat()
9.JS中的数字转换成字符型:( &#8221; &#8221; 变量)
10.JS中的取字符串长度是:(length)
11.JS中的字符与字符相连接使用 號.
12.JS中的比较操作符有:==等于,!=不等于, &#62;, &#62;=, &#60;. &#60;=
13.JS中声明变量使用:var来进行声明
14.JS中的判定语句结构:if(condition){}else{}
15.JS中的循环结构:for([initial expression];[condition];[upadte expression]) {inside loop}
16.循环中止的命令是:break
17.JS中的函数定义:function functionName([parameter],&#8230;){statement[s]}
18.当文件中出现多个form表单时.可以用document.forms[0],document.forms[1]来代替.
19.窗口:打开窗口window.open(), 关闭一个窗口:window.close(), 窗口本身:self
20.状態栏的设置:window.status= &#8220;字符 &#8220;;
21.弹出提示信息:window.alert( &#8220;字符 &#8220;);
22.弹出確认框:window.confirm();
23.弹出输入提示框:window.prompt();
24.指定当前显示链接的位置:window.location.href= &#8220;URL &#8221;
25.取出窗体中的所有表单的数量:document.forms.length
26.关闭文档的输出流:document.close();
27.字符串追加连接符: =
28.创建一个文档元素:document.createElement(),document.createTextNode()
29.得到元素的方法:document.getElementById()
30.设置表单中所有文本型的成员的值为空:
var form = window.document.forms[0]
for (var i = 0; i &#60;form.elements.length;i ){
if (form.elements.type == &#8220;text &#8220;){
form.elements.value = &#8221; &#8220;;
}
}
31.复选按钮在JS中判定是否选中:document.forms[0].checkThis.checked [...]]]></description>
		<wfw:commentRss>http://www.wemvc.com/42.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
