<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></title> 
<link>http://jackxiang.com/index.php</link> 
<description><![CDATA[赢在IT，Playin' with IT,Focus on Killer Application,Marketing Meets Technology.]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></copyright>
<item>
<link>http://jackxiang.com/post//</link>
<title><![CDATA[jquery $.ajax后台请求多个get参数Post参数的示例Demo]]></title> 
<author>jack &lt;xdy108@126.com&gt;</author>
<category><![CDATA[WEB2.0]]></category>
<pubDate>Mon, 13 Sep 2010 04:12:29 +0000</pubDate> 
<guid>http://jackxiang.com/post//</guid> 
<description>
<![CDATA[ 
	1.Get多个参数示例：<br/><textarea name="code" class="html" rows="15" cols="100">
&lt;script src=&quot;js/jquery-1.4.2.min.js&quot;&gt;&lt;/script&gt;
function fsubmit()&#123;
&nbsp;&nbsp; var item = $(&quot;input:radio:checked&quot;);&nbsp;&nbsp;
&nbsp;&nbsp; var checkedvalue = item.val();
&nbsp;&nbsp; var fqq = $(&#039;#FVotedQQ&#039;).val();
&nbsp;&nbsp; var getaward = $.ajax(&#123;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;url: &quot;http://changancx20.act.qq163.com/c/vote/add&quot;,
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;data:&quot;FVotedQQ=&quot;+fqq+&quot;&amp;kindid=&quot;+checkedvalue,
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;async: false
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#125;).responseText;
&nbsp;&nbsp;&nbsp;&nbsp;eval(&#039;var data = &#039;+getaward);&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;alert(data.message);
&nbsp;&nbsp;return false;&nbsp;&nbsp;
&#125;

</textarea><br/><br/>2.Post多个参数示例：<br/><textarea name="code" class="html" rows="15" cols="100">
&lt;script src=&quot;js/jquery-1.4.2.min.js&quot;&gt;&lt;/script&gt;
&nbsp;&nbsp;&nbsp;&nbsp;var jsonStr;//全局参数
&nbsp;&nbsp;&nbsp;&nbsp;$.ajax(&#123;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; type: &quot;POST&quot;,&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; dataType: &quot;json&quot;,&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; url: &quot;/validate.html&quot;,&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; data: &quot;wyuser=&quot;+wyuser+&quot;&amp;txqq=&quot;+txqq,&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; success: function (data) &#123;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; jsonStr = data;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#125;,&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; eror: function (data) &#123;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;alert(&quot;请求超时!&quot;) 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#125;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&#125;);
</textarea>
]]>
</description>
</item><item>
<link>http://jackxiang.com/post//#blogcomment</link>
<title><![CDATA[[评论] jquery $.ajax后台请求多个get参数Post参数的示例Demo]]></title> 
<author> &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> 
<guid>http://jackxiang.com/post//#blogcomment</guid> 
<description>
<![CDATA[ 
	
]]>
</description>
</item>
</channel>
</rss>