<?xml version="1.0" standalone="yes"?>
<?xml-stylesheet type="text/xsl" href="css/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>北京web前端培训班 - jquery前端外包</title><link>http://www.35ui.cn/</link><description>web前端培训机构 - </description><generator>RainbowSoft Studio Z-Blog 1.8 Arwen Build 90619</generator><language>zh-CN</language><copyright>北京web前端外包开发公司</copyright><pubDate>Thu, 30 Apr 2026 04:52:31 +0800</pubDate><item><title>jquery获取select选中的值 jquery 获得select值</title><author>04xiaoming@163.com (xiaoming)</author><link>http://www.35ui.cn/post/20170824544.html</link><pubDate>Thu, 24 Aug 2017 23:27:23 +0800</pubDate><guid>http://www.35ui.cn/post/20170824544.html</guid><description><![CDATA[<p><span style="color: #ff0000"><span style="font-size: larger">jQuery获取Select选择的Text和Value:</span></span><br /><strong>语法解释：</strong><br />1. $(&quot;#select_id&quot;).change(function(){//code...});&nbsp;&nbsp; //为Select添加事件，当选择其中一项时触发<br />2. var checkText=$(&quot;#select_id&quot;).find(&quot;option:selected&quot;).text();&nbsp; //获取Select选择的Text<br />...</p>]]></description><category>jquery前端外包</category><comments>http://www.35ui.cn/post/20170824544.html#comment</comments><wfw:comment>http://www.35ui.cn/</wfw:comment><wfw:commentRss>http://www.35ui.cn/feed.asp?cmt=2519</wfw:commentRss><trackback:ping>http://www.35ui.cn/cmd.asp?act=tb&amp;id=2519&amp;key=1ba9c2cd</trackback:ping></item><item><title>jquery获取地址栏参数?js怎么获取地址栏的指定参数?</title><author>04xiaoming@163.com (xiaoming)</author><link>http://www.35ui.cn/post/2017041643.html</link><pubDate>Sun, 16 Apr 2017 17:59:40 +0800</pubDate><guid>http://www.35ui.cn/post/2017041643.html</guid><description><![CDATA[<p>&nbsp;使用jquery获取url以及使用jquery获取url参数是我们经常要用到的操作</p><div>&nbsp;</div><div><strong>1、jquery获取url很简单，代码如下：</strong></div><div>&nbsp;</div><div>window.location.href;</div><div>其实只是用到了javascript的基础的window对象，并没有用jquery的知识。</div><div>&nbsp;</div><div><strong>2、jquery获取url参数比较复杂，要用到正则表达式，所以学好javascript正则式多么重要的事情</strong></div><p>...</p>]]></description><category>jquery前端外包</category><comments>http://www.35ui.cn/post/2017041643.html#comment</comments><wfw:comment>http://www.35ui.cn/</wfw:comment><wfw:commentRss>http://www.35ui.cn/feed.asp?cmt=2508</wfw:commentRss><trackback:ping>http://www.35ui.cn/cmd.asp?act=tb&amp;id=2508&amp;key=b7486d99</trackback:ping></item><item><title>jQuery判断checkbox是否选中的3种方法</title><author>04xiaoming@163.com (xiaoming)</author><link>http://www.35ui.cn/post/20170302100.html</link><pubDate>Thu, 02 Mar 2017 15:21:00 +0800</pubDate><guid>http://www.35ui.cn/post/20170302100.html</guid><description><![CDATA[<p><strong>&nbsp;方法一：</strong></p><div>if ($(&quot;#checkbox-id&quot;).get(0).checked) {</div><div>&nbsp; &nbsp; // do something</div><div>}</div><div>&nbsp;</div><div><strong>方法二：</strong></div><div>if($('#checkbox-id').is(':checked')) {</div>...]]></description><category>jquery前端外包</category><comments>http://www.35ui.cn/post/20170302100.html#comment</comments><wfw:comment>http://www.35ui.cn/</wfw:comment><wfw:commentRss>http://www.35ui.cn/feed.asp?cmt=2506</wfw:commentRss><trackback:ping>http://www.35ui.cn/cmd.asp?act=tb&amp;id=2506&amp;key=019bbdde</trackback:ping></item><item><title>Jquery 实现 “下次自动登录” 记住用户名密码功能</title><author>04xiaoming@163.com (xiaoming)</author><link>http://www.35ui.cn/post/20170302629.html</link><pubDate>Thu, 02 Mar 2017 14:44:12 +0800</pubDate><guid>http://www.35ui.cn/post/20170302629.html</guid><description><![CDATA[<p>Jquery将用户名密码存储到cookie中  需要导入jquery.js和jquery.cookie.js获取</p><p>&nbsp;</p><div class="codeText"><div class="codeHead"><span class="lantxt">XML/HTML Code</span><span class="copyCodeText" style="cursor:pointer" onclick="copyIdText('code_3783')">复制内容到剪贴板</span></div>...</div>]]></description><category>jquery前端外包</category><comments>http://www.35ui.cn/post/20170302629.html#comment</comments><wfw:comment>http://www.35ui.cn/</wfw:comment><wfw:commentRss>http://www.35ui.cn/feed.asp?cmt=2505</wfw:commentRss><trackback:ping>http://www.35ui.cn/cmd.asp?act=tb&amp;id=2505&amp;key=6471791c</trackback:ping></item><item><title>jquery退出each, jquery中怎么中断上层的each循环,js结束function</title><author>04xiaoming@163.com (xiaoming)</author><link>http://www.35ui.cn/post/20170218533.html</link><pubDate>Sat, 18 Feb 2017 08:19:54 +0800</pubDate><guid>http://www.35ui.cn/post/20170218533.html</guid><description><![CDATA[<p>jQuery中each类似于javascript的for循环 <br />但不同于for循环的是在each里面不能使用break结束循环，也不能使用continue来结束本次循环，想要实现类似的功能就只能用return,</p><p>...</p><table width="300">    <tbody>        <tr>            <td>break</td>            <td>用return false</td>        </tr>        <tr>        </tr>    </tbody></table>]]></description><category>jquery前端外包</category><comments>http://www.35ui.cn/post/20170218533.html#comment</comments><wfw:comment>http://www.35ui.cn/</wfw:comment><wfw:commentRss>http://www.35ui.cn/feed.asp?cmt=2503</wfw:commentRss><trackback:ping>http://www.35ui.cn/cmd.asp?act=tb&amp;id=2503&amp;key=d9151f0c</trackback:ping></item><item><title>jquery事件有哪些  jquery常用事件大全</title><author>04xiaoming@163.com (xiaoming)</author><link>http://www.35ui.cn/post/20170106527.html</link><pubDate>Fri, 06 Jan 2017 13:47:27 +0800</pubDate><guid>http://www.35ui.cn/post/20170106527.html</guid><description><![CDATA[<p>Jquery事件 　1.blur() 2.change() 3.click() 4.dblclick() 5.error() 6.focus() 7.focusin() 　8.focusout() 9.keydown() 10.keyup() 11.mousedown() 12.mouseenter() 13.mouseleave()　14.mousemove() 15.mouseout() 16.mouseover()　 17.mouseup() 18.resize()　19.scroll() 20.select() 21.submit() 22.unload()</p>]]></description><category>jquery前端外包</category><comments>http://www.35ui.cn/post/20170106527.html#comment</comments><wfw:comment>http://www.35ui.cn/</wfw:comment><wfw:commentRss>http://www.35ui.cn/feed.asp?cmt=2482</wfw:commentRss><trackback:ping>http://www.35ui.cn/cmd.asp?act=tb&amp;id=2482&amp;key=533b923e</trackback:ping></item><item><title> Video.js 是网页上嵌入视频播放器代码 jquery网页播放器代码加图片</title><author>04xiaoming@163.com (xiaoming)</author><link>http://www.35ui.cn/post/20161116512.html</link><pubDate>Wed, 16 Nov 2016 21:58:10 +0800</pubDate><guid>http://www.35ui.cn/post/20161116512.html</guid><description><![CDATA[<p>&nbsp;Video.js 是一个通用的在网页上嵌入视频播放器的 JS 库，Video.js 自动检测浏览器对 HTML5 的支持情况，如果不支持 HTML5 则自动使用 Flash 播放器。</p><div>&nbsp;</div><div><span style="color: rgb(255, 0, 0);"><span style="font-size: larger;"><strong>使用方法</strong></span></span></div><div>在页面中引用video-js.cs样式文件和video.js</div><p>...</p>]]></description><category>jquery前端外包</category><comments>http://www.35ui.cn/post/20161116512.html#comment</comments><wfw:comment>http://www.35ui.cn/</wfw:comment><wfw:commentRss>http://www.35ui.cn/feed.asp?cmt=2457</wfw:commentRss><trackback:ping>http://www.35ui.cn/cmd.asp?act=tb&amp;id=2457&amp;key=f4298b60</trackback:ping></item><item><title>jquery字符串截取 js几个经常用到的字符串的截取</title><author>04xiaoming@163.com (xiaoming)</author><link>http://www.35ui.cn/post/20160825868.html</link><pubDate>Thu, 25 Aug 2016 14:04:53 +0800</pubDate><guid>http://www.35ui.cn/post/20160825868.html</guid><description><![CDATA[<p>&nbsp;string str=&quot;123abc456&quot;;</p><div>int i=3;</div><div><strong>1 取字符串的前i个字符</strong></div><div>&nbsp; &nbsp;str=str.Substring(0,i); // or &nbsp;str=str.Remove(i,str.Length-i);&nbsp;</div><div><strong>2 去掉字符串的前i个字符：</strong></div><div>&nbsp; &nbsp;str=str.Remove(0,i); &nbsp;// or str=str.Substring(i);&nbsp;</div>...]]></description><category>jquery前端外包</category><comments>http://www.35ui.cn/post/20160825868.html#comment</comments><wfw:comment>http://www.35ui.cn/</wfw:comment><wfw:commentRss>http://www.35ui.cn/feed.asp?cmt=2445</wfw:commentRss><trackback:ping>http://www.35ui.cn/cmd.asp?act=tb&amp;id=2445&amp;key=a5379fb2</trackback:ping></item><item><title>jQuery中.bind() .live() .delegate() .on()的区别</title><author>04xiaoming@163.com (xiaoming)</author><link>http://www.35ui.cn/post/20160428550.html</link><pubDate>Thu, 28 Apr 2016 15:33:05 +0800</pubDate><guid>http://www.35ui.cn/post/20160428550.html</guid><description><![CDATA[<p><strong>&nbsp;bind(type,[data],fn) </strong>为每个匹配元素的特定事件绑定事件处理函数</p><div>&nbsp;</div><div><span style="color: rgb(255, 0, 0);"><strong>$(&quot;a&quot;).bind(&quot;click&quot;,function(){alert(&quot;ok&quot;);});</strong></span></div><div>live(type,[data],fn) 给所有匹配的元素附加一个事件处理函数，即使这个元素是以后再添加进来的</div>...]]></description><category>jquery前端外包</category><comments>http://www.35ui.cn/post/20160428550.html#comment</comments><wfw:comment>http://www.35ui.cn/</wfw:comment><wfw:commentRss>http://www.35ui.cn/feed.asp?cmt=2412</wfw:commentRss><trackback:ping>http://www.35ui.cn/cmd.asp?act=tb&amp;id=2412&amp;key=21e34f3d</trackback:ping></item><item><title> jquery滚动条加载数据</title><author>04xiaoming@163.com (xiaoming)</author><link>http://www.35ui.cn/post/20160311921.html</link><pubDate>Fri, 11 Mar 2016 21:31:17 +0800</pubDate><guid>http://www.35ui.cn/post/20160311921.html</guid><description><![CDATA[<div>//滚动条</div><div>&nbsp;$(window).scroll(function () {</div><div>&nbsp; var scrollTop = $(this).scrollTop();</div><div>&nbsp; var scrollHeight = $(document).height();</div><div>&nbsp; var windowHeight = $(this).height();</div><div>&nbsp; var data = $(&quot;#n&quot;).text();</div>...]]></description><category>jquery前端外包</category><comments>http://www.35ui.cn/post/20160311921.html#comment</comments><wfw:comment>http://www.35ui.cn/</wfw:comment><wfw:commentRss>http://www.35ui.cn/feed.asp?cmt=2400</wfw:commentRss><trackback:ping>http://www.35ui.cn/cmd.asp?act=tb&amp;id=2400&amp;key=4a57683d</trackback:ping></item></channel></rss>
