<?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>Fresker小站 &#187; JQuery</title>
	<atom:link href="http://www.fresker.com/old2/archives/tag/jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fresker.com/old2</link>
	<description>天将降大任于斯人也，必先苦其心志，劳其筋骨，饿其体肤，空乏其身....</description>
	<lastBuildDate>Sat, 05 May 2018 04:20:42 +0000</lastBuildDate>
	<language></language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
		<item>
		<title>jQuery IE 6 7 8 出错: 意外地调用了方法或属性访问</title>
		<link>http://www.fresker.com/old2/archives/594</link>
		<comments>http://www.fresker.com/old2/archives/594#comments</comments>
		<pubDate>Thu, 25 Oct 2012 08:47:57 +0000</pubDate>
		<dc:creator>Duke</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[技术杂谈]]></category>
		<category><![CDATA[教程类]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.fresker.com/archives/594</guid>
		<description><![CDATA[jquery在ie6,7,8下报错 JQUERY IE error: unexpected call to method or property access 意外地调用了方法或属性访问 意外地调用了方法或属性访问 or unexpected call to method or property access $('tbody').html(htmlinfo);&#160;&#160;&#160;&#160;//ie下直接插入html内容到一个节点时报错 解决方法： 将html内容添加到一个不同的元素标签里面，如下面的&#60;tbody&#62; $('table').html('&#60;tbody&#62;' + htmlinfo+ '&#60;/tbody&#62;');&#160;&#160;&#160;&#160;//本人使用此种方式 或者 document.title = htmlinfo;&#160;&#160;&#160;&#160;//这种方式也可以，但是个人还是喜欢上面一种]]></description>
		<wfw:commentRss>http://www.fresker.com/old2/archives/594/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery实现页面自动跳转</title>
		<link>http://www.fresker.com/old2/archives/286</link>
		<comments>http://www.fresker.com/old2/archives/286#comments</comments>
		<pubDate>Mon, 08 Nov 2010 09:22:05 +0000</pubDate>
		<dc:creator>Duke</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[开发技术类]]></category>
		<category><![CDATA[技术杂谈]]></category>
		<category><![CDATA[教程类]]></category>

		<guid isPermaLink="false">http://www.fresker.com/?p=286</guid>
		<description><![CDATA[有些时候，我们希望我们的页面可以自动跳转，页面跳转的方式比较多，在此使用的是js控制页面在加载完成后跳转： html部分： &#60;span id=&#8221;totalSecond&#8221; class =&#8221;c_red&#8221; &#62;10&#60;/span&#62;秒后自动跳转        //这是页面跳转的显示部分，主要是涉及一个id js部分： //由于下面使用的jquery的方式获取id，请在下面代码前加载jquery库文件 &#60;script type=&#8221;text/javascript&#8221;&#62; var second = $(&#8220;#totalSecond&#8221;).html();            //获取了id setInterval(&#8220;Autoredirect()&#8221;, 1000); function Autoredirect(){ if(second &#60; 0 ){ location.href = &#8216;http://www.fresker.com&#8217;;        //此处改为你希望跳转到的地址 }else{ $(&#8220;#totalSecond&#8221;).html(second&#8211;); } } &#60;/script&#62;]]></description>
		<wfw:commentRss>http://www.fresker.com/old2/archives/286/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->