<?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>WEB前端开发 &#187; MTJS</title>
	<atom:link href="http://www.css88.com/archives/tag/mtjs/feed" rel="self" type="application/rss+xml" />
	<link>http://www.css88.com</link>
	<description>专注前端开发，关注用户体验</description>
	<lastBuildDate>Mon, 06 Feb 2012 13:31:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>MTJS中的元素显示和隐藏的封装</title>
		<link>http://www.css88.com/archives/1793</link>
		<comments>http://www.css88.com/archives/1793#comments</comments>
		<pubDate>Wed, 19 Aug 2009 04:51:01 +0000</pubDate>
		<dc:creator>愚人码头</dc:creator>
				<category><![CDATA[JS]]></category>
		<category><![CDATA[MTJS]]></category>

		<guid isPermaLink="false">http://www.css88.com/?p=1793</guid>
		<description><![CDATA[页面元素的显示和隐藏在前端开发中经常用到的，原来我是这样写的， hide: function(el) {        el.style.display = &#34;none&#34;; } show: function(el) {         el.style.display = &#34;block&#34;;     } 这里在show函数上就有个问题，如果元素是display:inline话就有问题了，然后我又改成了： hide: function(el) {         el.style.display = &#34;none&#34;; } show: function(el) {         el.style.display = &#34; &#34;;     } 这也是经常看到的一种，但是当用CSS类设置元素的display时，是computedStyle,而不属于style对象，方法display=”只是取消style对象的display值；最后记过查找在《精通javascript》找到了一下方法， /**     * 隐藏指定的DOM对象     * @id hide     * @param {String} el DOM对象     * @return {none} [...]]]></description>
		<wfw:commentRss>http://www.css88.com/archives/1793/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MTJS框架迁至google code</title>
		<link>http://www.css88.com/archives/1755</link>
		<comments>http://www.css88.com/archives/1755#comments</comments>
		<pubDate>Tue, 11 Aug 2009 12:56:04 +0000</pubDate>
		<dc:creator>愚人码头</dc:creator>
				<category><![CDATA[JS]]></category>
		<category><![CDATA[MTJS]]></category>

		<guid isPermaLink="false">http://www.css88.com/?p=1755</guid>
		<description><![CDATA[MTJS框架迁至google code目前只有dom中一些方法： http://code.google.com/p/mtjs/source/browse/trunk/MT.core.js 文档页面是： http://mtjs.googlecode.com/svn/trunk/MT.core_docs/index.html 欢迎大家提意见和建议！谢谢 声明: 本文采用 BY-NC-SA 协议进行授权 &#124; WEB前端开发转载请注明转自《MTJS框架迁至google code》]]></description>
		<wfw:commentRss>http://www.css88.com/archives/1755/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

