<?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前端培训班 - js外包代码</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>Wed, 06 May 2026 11:12:51 +0800</pubDate><item><title>Post请求 四种常见的post请求中的参数形式</title><author>04xiaoming@163.com (xiaoming)</author><link>http://www.35ui.cn/post/20200324300.html</link><pubDate>Tue, 24 Mar 2020 22:01:37 +0800</pubDate><guid>http://www.35ui.cn/post/20200324300.html</guid><description><![CDATA[<p><strong>&nbsp;1.http请求介绍</strong></p><div>&nbsp;</div><div>首先Post请求时http请求的一种。HTTP 协议是以 ASCII 码传输，建立在 TCP/IP 协议之上的应用层规范。</div><div><strong><br /></strong></div><div><strong>（1）HTTP 请求方法种类</strong></div><div>&nbsp;</div><div>OPTIONS、GET、HEAD、POST、PUT、DELETE、TRACE、CONNECT</div>...]]></description><category>js外包代码</category><comments>http://www.35ui.cn/post/20200324300.html#comment</comments><wfw:comment>http://www.35ui.cn/</wfw:comment><wfw:commentRss>http://www.35ui.cn/feed.asp?cmt=2558</wfw:commentRss><trackback:ping>http://www.35ui.cn/cmd.asp?act=tb&amp;id=2558&amp;key=373c5865</trackback:ping></item><item><title>js获取iframe中的元素以及在iframe中获取父级的元素</title><author>04xiaoming@163.com (xiaoming)</author><link>http://www.35ui.cn/post/20200318297.html</link><pubDate>Wed, 18 Mar 2020 16:20:26 +0800</pubDate><guid>http://www.35ui.cn/post/20200318297.html</guid><description><![CDATA[<p><strong>第一种情况：</strong></p><p>iframe中不存在name和id的方法：（通过contentWindow获取）</p><div>var iframe = document.getElementsByTagName('iframe')[0];</div><div>var ifr_document = iframe.contentWindow.document;//iframe中的文档内容</div><div><strong>或者：</strong></div>...]]></description><category>js外包代码</category><comments>http://www.35ui.cn/post/20200318297.html#comment</comments><wfw:comment>http://www.35ui.cn/</wfw:comment><wfw:commentRss>http://www.35ui.cn/feed.asp?cmt=2557</wfw:commentRss><trackback:ping>http://www.35ui.cn/cmd.asp?act=tb&amp;id=2557&amp;key=c84a9de2</trackback:ping></item><item><title>js数组合并 js数组合并为字符串</title><author>04xiaoming@163.com (xiaoming)</author><link>http://www.35ui.cn/post/20190827687.html</link><pubDate>Tue, 27 Aug 2019 19:56:27 +0800</pubDate><guid>http://www.35ui.cn/post/20190827687.html</guid><description><![CDATA[<p>&nbsp;首先，在js中进行数组和字符串的转化</p><div>&nbsp;</div><div>数组变字符串　　var a,b;&nbsp; &nbsp; &nbsp;//两变量 一个数组a&nbsp; 一个字符串b</div><div>&nbsp;</div><div>a=new Array{0,1,2,3,4,5};</div><div>&nbsp;</div><div>b=a.join(&ldquo;-&rdquo;);&nbsp; &nbsp;//b=&quot;0-1-2-3-4-5&quot;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</div>...]]></description><category>js外包代码</category><comments>http://www.35ui.cn/post/20190827687.html#comment</comments><wfw:comment>http://www.35ui.cn/</wfw:comment><wfw:commentRss>http://www.35ui.cn/feed.asp?cmt=2554</wfw:commentRss><trackback:ping>http://www.35ui.cn/cmd.asp?act=tb&amp;id=2554&amp;key=41637826</trackback:ping></item><item><title>火狐javascript:;兼容性的问题 javascript:void(0); 火狐</title><author>04xiaoming@163.com (xiaoming)</author><link>http://www.35ui.cn/post/20170602353.html</link><pubDate>Fri, 02 Jun 2017 14:49:41 +0800</pubDate><guid>http://www.35ui.cn/post/20170602353.html</guid><description><![CDATA[<p>&nbsp;火狐和IE下href=&quot;JavaScript:void(0) 会弹出空白页</p><div>&nbsp;</div><div>经过排查，发现是href=&quot;javascript:void(0);&quot;导致的问题，本来javascript:void(0);的用处是不用整体刷新网页且返回一个空值，但这儿由于DOM本身的冒泡事件所以会最后执行HREF属性内的javascript:void(0);导致执行函数返回了一个空值，所以覆盖掉了前面正常执行函数所返回的值引起的错误。</div>...]]></description><category>js外包代码</category><comments>http://www.35ui.cn/post/20170602353.html#comment</comments><wfw:comment>http://www.35ui.cn/</wfw:comment><wfw:commentRss>http://www.35ui.cn/feed.asp?cmt=2513</wfw:commentRss><trackback:ping>http://www.35ui.cn/cmd.asp?act=tb&amp;id=2513&amp;key=b0cc1ef1</trackback:ping></item><item><title>jquery.cookie() 方法的使用(读取、写入、删除)</title><author>04xiaoming@163.com (xiaoming)</author><link>http://www.35ui.cn/post/20170417322.html</link><pubDate>Mon, 17 Apr 2017 13:57:08 +0800</pubDate><guid>http://www.35ui.cn/post/20170417322.html</guid><description><![CDATA[<p>&nbsp;一个轻量级的cookie 插件，可以读取、写入、删除 cookie。&nbsp;</p><div>&nbsp;</div><div><strong>jquery.cookie.js 的配置&nbsp;</strong></div><div>&nbsp;</div><div>首先包含jQuery的库文件，在后面包含 jquery.cookie.js 的库文件。&nbsp;</div><div>&nbsp;</div><div>&lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery-1.6.2.min.js&quot;&gt;&lt;/script&gt;&nbsp;</div>...]]></description><category>js外包代码</category><comments>http://www.35ui.cn/post/20170417322.html#comment</comments><wfw:comment>http://www.35ui.cn/</wfw:comment><wfw:commentRss>http://www.35ui.cn/feed.asp?cmt=2509</wfw:commentRss><trackback:ping>http://www.35ui.cn/cmd.asp?act=tb&amp;id=2509&amp;key=d3e97563</trackback:ping></item><item><title>js控制键盘码 js获取键盘事件 js键盘各键对应的代码</title><author>04xiaoming@163.com (xiaoming)</author><link>http://www.35ui.cn/post/20160526108.html</link><pubDate>Thu, 26 May 2016 14:56:35 +0800</pubDate><guid>http://www.35ui.cn/post/20160526108.html</guid><description><![CDATA[<p>&nbsp;简介：js获取键盘按键的键码event.keyCode，记录-方便查找。&nbsp;1、键盘各按键对应的数字&nbsp;                        keycode 8 = BackSpace            keycode 9 = Tab            keycode 12 = Clear                            keyc</p>]]></description><category>js外包代码</category><comments>http://www.35ui.cn/post/20160526108.html#comment</comments><wfw:comment>http://www.35ui.cn/</wfw:comment><wfw:commentRss>http://www.35ui.cn/feed.asp?cmt=2425</wfw:commentRss><trackback:ping>http://www.35ui.cn/cmd.asp?act=tb&amp;id=2425&amp;key=5b0b505e</trackback:ping></item><item><title>jquery 表单序列化 serialize()</title><author>04xiaoming@163.com (xiaoming)</author><link>http://www.35ui.cn/post/20160516295.html</link><pubDate>Mon, 16 May 2016 14:29:28 +0800</pubDate><guid>http://www.35ui.cn/post/20160516295.html</guid><description><![CDATA[<p>&nbsp;.serialize() 方法创建以标准 URL 编码表示的文本字符串。它的操作对象是代表表单元素集合的 jQuery 对象。</p><div><strong>表单元素有几种类型：</strong></div><div>&lt;form&gt;</div><div>&nbsp; &lt;div&gt;&lt;input type=&quot;text&quot; name=&quot;a&quot; value=&quot;1&quot; id=&quot;a&quot; /&gt;&lt;/div&gt;</div>...]]></description><category>js外包代码</category><comments>http://www.35ui.cn/post/20160516295.html#comment</comments><wfw:comment>http://www.35ui.cn/</wfw:comment><wfw:commentRss>http://www.35ui.cn/feed.asp?cmt=2422</wfw:commentRss><trackback:ping>http://www.35ui.cn/cmd.asp?act=tb&amp;id=2422&amp;key=dc89b7ba</trackback:ping></item><item><title>前端JS静态分页代码 </title><author>04xiaoming@163.com (xiaoming)</author><link>http://www.35ui.cn/post/20160511100.html</link><pubDate>Wed, 11 May 2016 15:06:38 +0800</pubDate><guid>http://www.35ui.cn/post/20160511100.html</guid><description><![CDATA[<p>&nbsp;&lt;!DOCTYPE html&gt;</p><div>&lt;html lang=&quot;en&quot;&gt;</div><div>&lt;head&gt;</div><div>&nbsp; &nbsp; &lt;meta charset=&quot;UTF-8&quot;&gt;</div><div>&nbsp; &nbsp; &lt;title&gt;JS静态分页代码&lt;/title&gt;&nbsp;</div><div>&lt;/head&gt;&nbsp;</div>...]]></description><category>js外包代码</category><comments>http://www.35ui.cn/post/20160511100.html#comment</comments><wfw:comment>http://www.35ui.cn/</wfw:comment><wfw:commentRss>http://www.35ui.cn/feed.asp?cmt=2420</wfw:commentRss><trackback:ping>http://www.35ui.cn/cmd.asp?act=tb&amp;id=2420&amp;key=d5a63d99</trackback:ping></item><item><title>Javascript 中的false、0、null、undefined和空字符串对象</title><author>04xiaoming@163.com (xiaoming)</author><link>http://www.35ui.cn/post/20160302779.html</link><pubDate>Wed, 02 Mar 2016 10:36:40 +0800</pubDate><guid>http://www.35ui.cn/post/20160302779.html</guid><description><![CDATA[<p>&nbsp;在Javascript中，我们经常会接触到题目中提到的这5个比较特别的对象&mdash;&mdash;false、0、空字符串、null和undefined。这几个对象很容易用错，因此在使用时必须得小心。</p><div>&nbsp;</div><div><span style="color: rgb(255, 0, 0);"><span style="font-size: medium;">类型检测</span></span></div><div>&nbsp;</div>...]]></description><category>js外包代码</category><comments>http://www.35ui.cn/post/20160302779.html#comment</comments><wfw:comment>http://www.35ui.cn/</wfw:comment><wfw:commentRss>http://www.35ui.cn/feed.asp?cmt=2394</wfw:commentRss><trackback:ping>http://www.35ui.cn/cmd.asp?act=tb&amp;id=2394&amp;key=f837b135</trackback:ping></item><item><title>url传中文参数乱码 url参数乱码</title><author>04xiaoming@163.com (xiaoming)</author><link>http://www.35ui.cn/post/20160131306.html</link><pubDate>Sun, 31 Jan 2016 22:40:07 +0800</pubDate><guid>http://www.35ui.cn/post/20160131306.html</guid><description><![CDATA[<p>&nbsp;在使用url进行参数传递时，经常会传递一些中文名的参数或URL地址，在后台处理时会发生转换错误。在有些传递页面使用GB2312，而在接收页面使用UTF8，这样接收到的参数就可能会与原来发生不一致。使用服务器端的urlEncode函数编码的URL，与使用客户端javascript的encodeURI函数编码的URL，结果就不一样。&nbsp;&nbsp;javaScript中的编码方法：</p>]]></description><category>js外包代码</category><comments>http://www.35ui.cn/post/20160131306.html#comment</comments><wfw:comment>http://www.35ui.cn/</wfw:comment><wfw:commentRss>http://www.35ui.cn/feed.asp?cmt=2383</wfw:commentRss><trackback:ping>http://www.35ui.cn/cmd.asp?act=tb&amp;id=2383&amp;key=bbd45756</trackback:ping></item></channel></rss>
