<?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; jquery</title>
	<atom:link href="http://zhoumo123.cn/category/web/jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://zhoumo123.cn</link>
	<description>知识分享，共同进步。zhoumo123.cn</description>
	<lastBuildDate>Thu, 07 Nov 2019 05:53:49 +0000</lastBuildDate>
	<language>zh-CN</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.0.1</generator>
	<item>
		<title>jquery获取div元素属性内容attr的用法</title>
		<link>http://zhoumo123.cn/web/jquery/3448.html</link>
		<comments>http://zhoumo123.cn/web/jquery/3448.html#comments</comments>
		<pubDate>Thu, 24 Dec 2015 01:36:01 +0000</pubDate>
		<dc:creator><![CDATA[zhangc]]></dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://zhoumo123.cn/?p=3448</guid>
		<description><![CDATA[jQuery如何获取元素的属性值的内容呢，一起看下例子： 下面的例子获取div中 style 属性的内容。 &#160;]]></description>
				<content:encoded><![CDATA[<p>jQuery如何获取元素的属性值的内容呢，一起看下例子：</p>
<p>下面的例子获取div中 style 属性的内容。</p>
<pre class="brush: php; title: ; notranslate">

&lt;script type=&quot;text/javascript&quot;&gt;
$(function(){ 
    $(&quot;.show&quot;).each(function(i){
        var v = $(this).attr(&quot;style&quot;);
        alert(v);
    });
});
&lt;/script&gt;
&lt;div class=&quot;show&quot; style=&quot; font-size:14px; color:#03C;&quot;&gt;test1&lt;/div&gt;
&lt;div class=&quot;show&quot; style=&quot; font-size:16px; color:#009;&quot;&gt;test2&lt;/div&gt;
&lt;div class=&quot;show&quot; style=&quot; font-size:18px; color:#000;&quot;&gt;test3&lt;/div&gt;



</pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://zhoumo123.cn/web/jquery/3448.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery获取一组单选按钮的值</title>
		<link>http://zhoumo123.cn/web/jquery/3359.html</link>
		<comments>http://zhoumo123.cn/web/jquery/3359.html#comments</comments>
		<pubDate>Wed, 28 Oct 2015 06:24:46 +0000</pubDate>
		<dc:creator><![CDATA[zhangc]]></dc:creator>
				<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://zhoumo123.cn/?p=3359</guid>
		<description><![CDATA[var sexVal=$(&#8220;input:radio[name=&#8217;sex&#8217;][checked]&#8221;).val(); alert(sexVal);]]></description>
				<content:encoded><![CDATA[<p>var sexVal=$(&#8220;input:radio[name=&#8217;sex&#8217;][checked]&#8221;).val();<br />
alert(sexVal);</p>
]]></content:encoded>
			<wfw:commentRss>http://zhoumo123.cn/web/jquery/3359.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript去除字符串前后空格的trim方法</title>
		<link>http://zhoumo123.cn/web/jquery/3160.html</link>
		<comments>http://zhoumo123.cn/web/jquery/3160.html#comments</comments>
		<pubDate>Tue, 14 Jul 2015 06:33:29 +0000</pubDate>
		<dc:creator><![CDATA[zhangc]]></dc:creator>
				<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://zhoumo123.cn/?p=3160</guid>
		<description><![CDATA[相比vbscript，javascript在字符串处理方面已经很强大了，但是偏偏缺少去除字符串前后空格的trim方法。 http://alany.blog.51cto.com/6125308/1658938]]></description>
				<content:encoded><![CDATA[<p>相比vbscript，javascript在字符串处理方面已经很强大了，但是偏偏缺少去除字符串前后空格的trim方法。</p>
<pre class="brush: java; title: ; notranslate">
//clear the right and left space
function trim(s){
return trimRight(trimLeft(s));
}

//clear the left space
function trimLeft(s){
if(s == null) {
return &quot;&quot;;
}
var whitespace = new String(&quot; \t\n\r&quot;);
var str = new String(s);
if (whitespace.indexOf(str.charAt(0)) != -1) {
var j=0, i = str.length;
while (j &amp;lt; i &amp;amp;&amp;amp; whitespace.indexOf(str.charAt(j)) != -1){
j++;
}
str = str.substring(j, i);
}
return str;
}

//clear the right space
function trimRight(s){
if(s == null) return &quot;&quot;;
var whitespace = new String(&quot; \t\n\r&quot;);
var str = new String(s);
if (whitespace.indexOf(str.charAt(str.length-1)) != -1){
var i = str.length - 1;
while (i &amp;gt;= 0 &amp;amp;&amp;amp; whitespace.indexOf(str.charAt(i)) != -1){
i--;
}
str = str.substring(0, i+1);
}
return str;
}

</pre>
<p>http://alany.blog.51cto.com/6125308/1658938</p>
]]></content:encoded>
			<wfw:commentRss>http://zhoumo123.cn/web/jquery/3160.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>easyui datagrid数据表格浏览器窗口自适应大小代码</title>
		<link>http://zhoumo123.cn/web/jquery/2823.html</link>
		<comments>http://zhoumo123.cn/web/jquery/2823.html#comments</comments>
		<pubDate>Thu, 04 Jun 2015 05:07:36 +0000</pubDate>
		<dc:creator><![CDATA[zhangc]]></dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[easyui]]></category>

		<guid isPermaLink="false">http://zhoumo123.cn/?p=2823</guid>
		<description><![CDATA[在jquery easyui datagrid 中，客户电脑分辨率不同，往往会造成分页不在一屏幕内显示，如何做到自适应呢？看下面代码：]]></description>
				<content:encoded><![CDATA[<p>在jquery easyui datagrid 中，客户电脑分辨率不同，往往会造成分页不在一屏幕内显示，如何做到自适应呢？看下面代码：</p>
<pre class="brush: jscript; title: ; notranslate">

$('#tt').datagrid('resize',{
    height: window.innerHeight - otherHeight, // otherHeight 表格以上元素高度
    width: window.innerWidth //根据实际情况计算出的宽度
});

各种高度和宽度参考：
alert($(window).height()); //浏览器时下窗口可视区域高度
alert($(document).height()); //浏览器时下窗口文档的高度
alert($(document.body).height());//浏览器时下窗口文档body的高度
alert($(document.body).outerHeight(true));//浏览器时下窗口文档body的总高度 包括border padding margin
alert($(window).width()); //浏览器时下窗口可视区域宽度
alert($(document).width());//浏览器时下窗口文档对于象宽度
alert($(document.body).width());//浏览器时下窗口文档body的高度
alert($(document.body).outerWidth(true));//浏览器时下窗口文档body的总宽度 包括border padding margin

alert($(document).scrollTop()); //获取滚动条到顶部的垂直高度
alert($(document).scrollLeft()); //获取滚动条到左边的垂直宽度


</pre>
]]></content:encoded>
			<wfw:commentRss>http://zhoumo123.cn/web/jquery/2823.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jquery判断复选框checkbox是否选中(attr获取checked)</title>
		<link>http://zhoumo123.cn/web/jquery/2443.html</link>
		<comments>http://zhoumo123.cn/web/jquery/2443.html#comments</comments>
		<pubDate>Thu, 29 Jan 2015 03:22:10 +0000</pubDate>
		<dc:creator><![CDATA[zhangc]]></dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[web开发]]></category>

		<guid isPermaLink="false">http://zhoumo123.cn/?p=2443</guid>
		<description><![CDATA[在表单中常用到使用jquery判断复选框checkbox是否选中来进行一些勾选后的其他操作，下面分享一下jquery判断checkbox是否选中的一种方式。 &#160; &#60;input id=&#8221;chk&#8221; type=&#8221;checkbox&#8221; value=&#8221;1&#8243; checked&#62; 复选框是否选中]]></description>
				<content:encoded><![CDATA[<p>在表单中常用到使用jquery判断复选框checkbox是否选中来进行一些勾选后的其他操作，下面分享一下jquery判断checkbox是否选中的一种方式。</p>
<p>&nbsp;</p>
<p>&lt;input id=&#8221;chk&#8221; type=&#8221;checkbox&#8221; value=&#8221;1&#8243; checked&gt; 复选框是否选中</p>
<pre class="brush: php; title: ; notranslate">

var isChk=$(&quot;#chk&quot;).attr(&quot;checked&quot;);
if(isChk)
{
//选中时处理的内容
}
else
{
//未选中时处理的内容
}

</pre>
]]></content:encoded>
			<wfw:commentRss>http://zhoumo123.cn/web/jquery/2443.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jquery表单提交获取元素值并显示</title>
		<link>http://zhoumo123.cn/web/form/825.html</link>
		<comments>http://zhoumo123.cn/web/form/825.html#comments</comments>
		<pubDate>Sun, 28 Sep 2014 03:20:53 +0000</pubDate>
		<dc:creator><![CDATA[zhangc]]></dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[表单]]></category>

		<guid isPermaLink="false">http://zhoumo123.cn/?p=825</guid>
		<description><![CDATA[看下面的例子，控制jquery对象，表单提交后，通过jquery中的方法获取元素的值，并将获取的数据显示出来。 &#160; html代码如下： &#160; &#160;]]></description>
				<content:encoded><![CDATA[<p>看下面的例子，控制jquery对象，表单提交后，通过jquery中的方法获取元素的值，并将获取的数据显示出来。</p>
<p><a href="http://img.zhoumo123.cn/wp-content/uploads/query-1.3.jpg"><img class="alignnone size-full wp-image-826" src="http://img.zhoumo123.cn/wp-content/uploads/query-1.3.jpg" alt="query-1.3" width="282" height="213" /></a></p>
<p>&nbsp;</p>
<p>html代码如下：</p>
<pre class="brush: php; title: ; notranslate">

&lt;!doctype html&gt;
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;控制jQuery对象&lt;/title&gt;
&lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot; src=&quot;Jscript/jquery-1.4.2.min.js&quot;&gt;&lt;/script&gt;
&lt;style type=&quot;text/css&quot;&gt;
.divFrame{width:260px;border:solid 1px #666;font-size:10pt}
.divTitle{background-color:#eee;padding:5px}
.divContent{padding:8px;font-size:9pt}
.divTip{width:244px;border:solid 1px #666;padding:8px;font-size:9pt;margin-top:5px;display:none}
.txtCss{border:solid 1px #ccc}
.divBtn{padding-top:5px}
.divBtn .btnCss{border:solid 1px #535353;width:60px}
&lt;/style&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
$(function(){
$(&quot;#btnSubmit&quot;).click(function(){
var oTxtValue=$(&quot;#Text1&quot;).val(); //获取文本框的值
var oRdoValue=$(&quot;#Radio1&quot;).is (&quot;:checked&quot;)?&quot;男&quot;:&quot;女&quot;; //获取单选框按钮值
var oChkValue=$(&quot;#Checkbox1&quot;).is (&quot;:checked&quot;)?&quot;已婚&quot;:&quot;未婚&quot;;//获取复选框按钮值
$(&quot;#divTip&quot;).css(&quot;display&quot;,&quot;block&quot;).html(oTxtValue+&quot;&lt;br&gt;&quot;+oRdoValue+&quot;&lt;br&gt;&quot;+oChkValue); //显示提示文本元素
})
})
&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div class=&quot;divFrame&quot;&gt;
&lt;div class=&quot;divTitle&quot;&gt;请输入如下信息&lt;/div&gt;
&lt;div class=&quot;divContent&quot;&gt;
姓名：&lt;input id=&quot;Text1&quot; type=&quot;text&quot; class=&quot;txtCss&quot;/&gt;&lt;br /&gt;
性别：&lt;input id=&quot;Radio1&quot; name=&quot;rdoSex&quot; type=&quot;radio&quot; value=&quot;男&quot; /&gt;男
&lt;input id=&quot;Radio2&quot; name=&quot;rdoSex&quot; type=&quot;radio&quot; value=&quot;女&quot; /&gt;女&lt;br /&gt;
婚否：&lt;input id=&quot;Checkbox1&quot; type=&quot;checkbox&quot; /&gt;
&lt;div class=&quot;divBtn&quot;&gt;&lt;input id=&quot;btnSubmit&quot; type=&quot;button&quot; value=&quot;提 交&quot; class=&quot;btnCss&quot; /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;divTip&quot; class=&quot;divTip&quot;&gt;&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;

</pre>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://zhoumo123.cn/web/form/825.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery对象与dom对象相互转换</title>
		<link>http://zhoumo123.cn/web/jquery/367.html</link>
		<comments>http://zhoumo123.cn/web/jquery/367.html#comments</comments>
		<pubDate>Fri, 12 Sep 2014 01:28:06 +0000</pubDate>
		<dc:creator><![CDATA[zhangc]]></dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[dom对象]]></category>

		<guid isPermaLink="false">http://zhoumo123.cn/?p=367</guid>
		<description><![CDATA[刚开始学习jQuery，可能一时会分不清楚哪些是jQuery对象，哪些是DOM对象。至于DOM对象不多解释，我们接触的太多了，下面重点介绍一下jQuery，以及两者相互间的转换。 什么是jQuery对象？ &#8212;就是通过jQuery包装DOM对象后产生的对象。jQuery对象是jQuery独有的，其可以使用jQuery里的方法。 比如： $(&#8220;#test&#8221;).html() 意思是指：获取ID为test的元素内的html代码。其中html()是jQuery里的方法 这段代码等同于用DOM实现代码： document.getElementById(&#8220;id ...  <a href="http://zhoumo123.cn/web/jquery/367.html">  阅读全文 </a>]]></description>
				<content:encoded><![CDATA[<p>刚开始学习jQuery，可能一时会分不清楚哪些是jQuery对象，哪些是DOM对象。至于DOM对象不多解释，我们接触的太多了，下面重点介绍一下jQuery，以及两者相互间的转换。</p>
<p><strong>什么是jQuery对象？</strong></p>
<p>&#8212;就是通过jQuery包装DOM对象后产生的对象。jQuery对象是jQuery独有的，其可以使用jQuery里的方法。</p>
<p>比如：</p>
<p>$(&#8220;#test&#8221;).html() 意思是指：获取ID为test的元素内的html代码。其中html()是jQuery里的方法</p>
<p>这段代码等同于用DOM实现代码：</p>
<p><strong>document.getElementById(&#8220;id&#8221;).innerHTML;</strong></p>
<p>虽然jQuery对象是包装DOM对象后产生的，但是jQuery无法使用DOM对象的任何方法，同理DOM对象也不能使用jQuery里的方法.乱使用会报错。比如：$(&#8220;#test&#8221;).innerHTML、document.getElementById(&#8220;id&#8221;).html()之类的写法都是错误的。</p>
<p>还有一个要注意的是：用#id作为选择符取得的是jQuery对象与document.getElementById(&#8220;id&#8221;)得到的DOM对象，这两者并不等价。请参看如下说的两者间的转换。</p>
<p>既然jQuery有区别但也有联系，那么jQuery对象与DOM对象也可以相互转换。在再两者转换前首先我们给一个约定：如果一个获取的是 jQuery对象，那么我们在变量前面加上$，如：var $variab = jQuery对象；如果获取的是DOM对象，则与习惯普通一样：var variab = DOM对象；这么约定只是便于讲解与区别，实际使用中并不规定。</p>
<p><strong>jQuery对象转成DOM对象：</strong></p>
<p>两种转换方式将一个jQuery对象转换成DOM对象：[index]和.get(index);</p>
<p>(1)jQuery对象是一个数据对象，可以通过[index]的方法，来得到相应的DOM对象。</p>
<p>如：</p>
<p>var $v =$(&#8220;#v&#8221;) ; //jQuery对象</p>
<p>var v=$v[0]; //DOM对象</p>
<p>alert(v.checked) //检测这个checkbox是否被选中</p>
<p>(2)jQuery本身提供，通过.get(index)方法，得到相应的DOM对象</p>
<p>如：</p>
<p>var $v=$(&#8220;#v&#8221;); //jQuery对象</p>
<p>var v=$v.get(0); //DOM对象</p>
<p>alert(v.checked) //检测这个checkbox是否被选中</p>
<p><strong>DOM对象转成jQuery对象:</strong></p>
<p>对于已经是一个DOM对象，只需要用$()把DOM对象包装起来，就可以获得一个jQuery对象了。$(DOM对象)</p>
<p>如：</p>
<p>var v=document.getElementById(&#8220;v&#8221;); //DOM对象</p>
<p>var $v=$(v); //jQuery对象</p>
<p>转换后，就可以任意使用jQuery的方法了。</p>
<p>通过以上方法，可以任意的相互转换jQuery对象和DOM对象。需要再强调注意的是：DOM对象才能使用DOM中的方法，jQuery对象是不可以用DOM中的方法。</p>
]]></content:encoded>
			<wfw:commentRss>http://zhoumo123.cn/web/jquery/367.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery的ajax在IE提交数据乱码解决方法</title>
		<link>http://zhoumo123.cn/web/jquery/134.html</link>
		<comments>http://zhoumo123.cn/web/jquery/134.html#comments</comments>
		<pubDate>Tue, 17 Jun 2014 09:43:29 +0000</pubDate>
		<dc:creator><![CDATA[zhangc]]></dc:creator>
				<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://zhoumo123.cn/?p=134</guid>
		<description><![CDATA[乱码是因为编码不同而造成的。在ajax post 或 get时都有可能出现乱码。 为了避免乱码，可以做到以下几步 解决方法 1，保持编码的统一，包括文件编码，数据库编码，网页content-type编码 检查一下&#60;meta http-equiv=”content-type” content=”text/html; charset=UTF-8″ /&#62; 建议中文都是用UTF-8，使用gbk/gb2312有可能会出现乱码 2，使用post来发送而不是get get方法是会通过链接来传递参数，而且会自动urlEncode(编码)，而各个浏览器编码的方式可能不太一样。使用post可以避免这种 ...  <a href="http://zhoumo123.cn/web/jquery/134.html">  阅读全文 </a>]]></description>
				<content:encoded><![CDATA[<p>乱码是因为编码不同而造成的。在ajax post 或 get时都有可能出现乱码。</p>
<p>为了避免乱码，可以做到以下几步</p>
<p>解决方法<br />
1，保持编码的统一，包括文件编码，数据库编码，网页content-type编码<br />
检查一下&lt;meta http-equiv=”content-type” content=”text/html; charset=UTF-8″ /&gt;</p>
<p>建议中文都是用UTF-8，使用gbk/gb2312有可能会出现乱码</p>
<p>2，使用post来发送而不是get<br />
get方法是会通过链接来传递参数，而且会自动urlEncode(编码)，而各个浏览器编码的方式可能不太一样。使用post可以避免这种情况。</p>
<p>3，通过在js前端escape编码再发送，然后后台解码取得数据<br />
这些可以在网上搜索</p>
<p>4，在全局设定contentType，指定编码<br />
因为jquery ajax是使用utf-8来编码发送数据的，ie在发送时却没加上charset=utf-8，从而导致乱码(IE默认使用iso-8859-1编码)</p>
<p>$.ajaxSetup({<br />
contentType: &#8220;application/x-www-form-urlencoded; charset=utf-8&#8243;<br />
});</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://zhoumo123.cn/web/jquery/134.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jquery 倒计时返回指定页面</title>
		<link>http://zhoumo123.cn/web/jquery/97.html</link>
		<comments>http://zhoumo123.cn/web/jquery/97.html#comments</comments>
		<pubDate>Wed, 28 May 2014 08:35:57 +0000</pubDate>
		<dc:creator><![CDATA[zhangc]]></dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[jquery倒计时]]></category>

		<guid isPermaLink="false">http://zhoumo123.cn/?p=97</guid>
		<description><![CDATA[404页面上常用到倒计时返回指定页面，下面是jquery和php结合倒计时返回指定页面，代码如下： &#60;?php $url=&#8221;http://zhoumo123.cn/&#8220;; $num=&#8221;10&#8243;; ?&#62; &#160; &#160; &#160;]]></description>
				<content:encoded><![CDATA[<p>404页面上常用到倒计时返回指定页面，下面是jquery和php结合倒计时返回指定页面，代码如下：</p>
<p>&lt;?php<br />
$url=&#8221;<a href="http://zhoumo123.cn/">http://zhoumo123.cn/</a>&#8220;;<br />
$num=&#8221;10&#8243;;<br />
?&gt;</p>
<pre class="brush: java; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;  src=&quot;js/jquery-1.8.3.min.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
var gcisNum = &lt;?php echo $num; ?&gt;;
$(function(){
    gcisSetNum();
});

function skipNum()
{

	$(&quot;#skip&quot;).html(gcisNum-1);
	gcisNum--;
	if(gcisNum)
	{
		gcisSetNum();
	}
	else
	{
	    window.location='&lt;?php echo $url; ?&gt;';
	}
}

function gcisSetNum()
{
	setTimeout(&quot;skipNum()&quot;, 1000);
}

&lt;/script&gt;

&lt;div&gt;系统在&amp;nbsp;&lt;span id=&quot;skip&quot;&gt;&lt;?php echo $num; ?&gt;&lt;/span&gt;&amp;nbsp;秒后自动跳转到首页。&lt;/div&gt;

</pre>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://zhoumo123.cn/web/jquery/97.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>响应式TAB-FullWidthTabs</title>
		<link>http://zhoumo123.cn/web/jquery/46.html</link>
		<comments>http://zhoumo123.cn/web/jquery/46.html#comments</comments>
		<pubDate>Thu, 22 May 2014 03:37:16 +0000</pubDate>
		<dc:creator><![CDATA[zhangc]]></dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[响应式]]></category>

		<guid isPermaLink="false">http://zhoumo123.cn/?p=46</guid>
		<description><![CDATA[响应式TAB-FullWidthTabs 在PC和移动设备上的显示效果如下图，根据屏幕大小，采用不同布局来展示内容。 演示地址 http://tympanus.net/Blueprints/FullWidthTabs/ 下载地址 http://tympanus.net/Blueprints/FullWidthTabs/FullWidthTabs.zip]]></description>
				<content:encoded><![CDATA[<p><a href="http://zhoumo123.cn/?p=46">响应式TAB-FullWidthTabs</a></p>
<p>在PC和移动设备上的显示效果如下图，根据屏幕大小，采用不同布局来展示内容。</p>
<p><a href="http://img.zhoumo123.cn/wp-content/uploads/2014/05/BlueprintFullWidthTabs.png"><img class="alignnone wp-image-47 size-full" src="http://img.zhoumo123.cn/wp-content/uploads/2014/05/BlueprintFullWidthTabs.png" alt="BlueprintFullWidthTabs" width="580" height="315" /></a></p>
<p> 演示地址 http://tympanus.net/Blueprints/FullWidthTabs/</p>
<p> 下载地址 http://tympanus.net/Blueprints/FullWidthTabs/FullWidthTabs.zip</p>
]]></content:encoded>
			<wfw:commentRss>http://zhoumo123.cn/web/jquery/46.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
