<?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://huashui.org/topics/jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://huashui.org</link>
	<description>总是到下雨才想到雨伞，总是到拿雨伞时才发现不见了。</description>
	<lastBuildDate>Thu, 29 Jul 2010 09:53:42 +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>jQuery的Ajax在表单上的运用</title>
		<link>http://huashui.org/post/jquery-ajax-form-example.html</link>
		<comments>http://huashui.org/post/jquery-ajax-form-example.html#comments</comments>
		<pubDate>Sun, 18 Oct 2009 14:44:18 +0000</pubDate>
		<dc:creator>Huashui</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://huashui.org/?p=118</guid>
		<description><![CDATA[jQuery的特点是它的使用起来简单，下面介绍一个今天写的表单实例。 1、引入jQuery。 2、验证和提交的代码 function Check&#40;&#41; &#123; //验证 if&#40;$&#40;&#34;#mobile&#34;&#41;.val&#40;&#41;==&#34;&#34; &#124;&#124;$&#40;&#34;#uniquecode&#34;&#41;.val&#40;&#41;==&#34;&#34; &#124;&#124; $&#40;&#34;#textCode&#34;&#41;.val&#40;&#41;==&#34;&#34; &#41; &#123; alert&#40;&#34;手机号、唯一码、验证码不得为空&#34;&#41;; return false; &#125; else &#123; return true; &#125; &#160; &#125; &#160; function LoginSuccess&#40;&#41; &#123; $.post&#40;&#34;get_check.php&#34;,&#123;&#34;mobile&#34;:$&#40;&#34;#mobile&#34;&#41;.val&#40;&#41;,&#34;uniquecode&#34;:$&#40;&#34;#uniquecode&#34;&#41;.val&#40;&#41;,&#34;textCode&#34;:$&#40;&#34;#textCode&#34;&#41;.val&#40;&#41;&#125;,function&#40;data&#41; &#123; alert&#40;data&#41;; $&#40;&#34;#mobile&#34;&#41;.val&#40;&#34;&#34;&#41;; $&#40;&#34;#uniquecode&#34;&#41;.val&#40;&#34;&#34;&#41;; $&#40;&#34;#textCode&#34;&#41;.val&#40;&#34;&#34;&#41;; $&#40;&#34;#randomcode&#34;&#41;.attr&#40;&#34;src&#34;,&#34;doimg.php&#34;&#41;; &#125;&#41; &#160; &#125; &#160; function Login&#40;&#41; &#123; if&#40;Check&#40;&#41;&#41; &#123; LoginSuccess&#40;&#41;; &#125; &#125; &#160; $&#40;document&#41;.ready&#40;function&#40;&#41; &#123; $&#40;&#34;#submitbutton&#34;&#41;.click&#40;function&#40;&#41;&#123; Login&#40;&#41;; &#125;&#41; &#125;&#41; 3、DEMO [...]]]></description>
		<wfw:commentRss>http://huashui.org/post/jquery-ajax-form-example.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
