当前位置:  编程技术>WEB前端
本页文章导读:
    ▪Node.js 0.9.8 开发版发布      Node.js 发布 0.9.8 开发版,主要改进内容包括:npm: Upgrade to v1.2.3V8: Upgrade to 3.15.11.10streams: Support objects other than Buffers (Jake Verbaten)buffer: remove float write range checks (Trevor Norris)http: close connection on 304/2.........
    ▪JavaScript数组去除重复方法      方法如下: 1 Array.prototype.distinct = function(){ 2 var self = this; 3 var _a = this.concat().sort(); 4 _a.sort(function(a,b){ 5 if(a == b){ 6 var n = self.indexOf(a); .........
    ▪JQuery调用WebService      前台:<script type="text/javascript">    $(function () {        $("#btn1").click(function () {          &nbs.........

[1]Node.js 0.9.8 开发版发布
    来源:    发布时间: 2013-11-06

Node.js 发布 0.9.8 开发版,主要改进内容包括:

  • npm: Upgrade to v1.2.3
  • V8: Upgrade to 3.15.11.10
  • streams: Support objects other than Buffers (Jake Verbaten)
  • buffer: remove float write range checks (Trevor Norris)
  • http: close connection on 304/204 responses with chunked encoding (Ben Noordhuis)
  • build: fix build with dtrace support on FreeBSD (Fedor Indutny)
  • console: Support formatting options in trace() (isaacs)
  • domain: empty stack on all exceptions (Dave Olszewski)
  • unix, windows: make uv_*_bind() error codes consistent (Andrius Bentkus)
  • linux: add futimes() fallback (Ben Noordhuis)

相关地址:

Source Code: http://nodejs.org/dist/v0.9.8/node-v0.9.8.tar.gz
Macintosh Installer (Universal): http://nodejs.org/dist/v0.9.8/node-v0.9.8.pkg
Windows Installer: http://nodejs.org/dist/v0.9.8/node-v0.9.8-x86.msi
Windows x64 Installer: http://nodejs.org/dist/v0.9.8/x64/node-v0.9.8-x64.msi
Windows x64 Files: http://nodejs.org/dist/v0.9.8/x64/
Linux 32-bit Binary: http://nodejs.org/dist/v0.9.8/node-v0.9.8-linux-x86.tar.gz
Linux 64-bit Binary: http://nodejs.org/dist/v0.9.8/node-v0.9.8-linux-x64.tar.gz
Solaris 32-bit Binary: http://nodejs.org/dist/v0.9.8/node-v0.9.8-sunos-x86.tar.gz
Solaris 64-bit Binary: http://nodejs.org/dist/v0.9.8/node-v0.9.8-sunos-x64.tar.gz
Other release files: http://nodejs.org/dist/v0.9.8/
Website: http://nodejs.org/docs/v0.9.8/
Documentation: http://nodejs.org/docs/v0.9.8/api/

本文链接


    
[2]JavaScript数组去除重复方法
    来源:    发布时间: 2013-11-06

方法如下:

1 Array.prototype.distinct = function(){
2 var self = this;
3 var _a = this.concat().sort();
4 _a.sort(function(a,b){
5 if(a == b){
6 var n = self.indexOf(a);
7 self.splice(n,1);
8 }
9 });
10 return self;
11 };

使用方法:

1 var a = [1,2,3,4,5,2,3,4,6,7,8];
2 a.distinct();

 

本文链接


    
[3]JQuery调用WebService
    来源:    发布时间: 2013-11-06

前台:

<script type="text/javascript">
    $(function () {
        $("#btn1").click(function () {           //不带参数
            $.ajax({
                type: "POST",
                url: "WebService1.asmx/HelloWorld",
                dataType: "json",
                contentType: "application/json; charset=utf-8",
                success: function (json) { alert(json.d); },
                error: function (error) {
                    alert("调用出错" + error.responseText);
                }
            });
        });
        $("#btn2").click(function () {           //带参数
            $.ajax({
                type: "POST",
                url: "WebService1.asmx/ReturnString",
                data: "{s:'" + $("#txt").val() + "'}",
                dataType: "json",
                contentType: "application/json; charset=utf-8",
                success: function (json) { alert(json.d); },
                error: function (error) {
                    alert("调用出错" + error.responseText);
                }
            });
      &nb
    
最新技术文章:
▪css white-space:nowrap属性用法(可以强制文字不...
▪IE里button设置border:none属性无效解决方法
▪border:none与border:0使用区别
▪html清除浮动的6种方法示例
▪三个不常见的 HTML5 实用新特性简介
▪css代码优化的12个技巧
▪低版本IE正常运行HTML5+CSS3网站的3种解决方案
▪CSS Hack大全-教你如何区分出IE6-IE10、FireFox、Chr...
▪ie6,ie7,ie8完美支持position:fixed的终极解决方案
▪小技巧处理div内容溢出
▪html小技巧之td,div标签里内容不换行
▪纯CSS实现鼠标放上去改变文字内容
▪li中插入img图片间有空隙的解决方案
▪CSS3中Transition属性详解以及示例分享
▪父div高度不能自适应子div高度的解决方案
▪告别AJAX实现无刷新提交表单
▪从零学CSS系列之文本属性
▪HTML 标签
▪CSS3+Js实现响应式导航条
▪CSS3实例分享之多重背景的实现(Multiple background...
▪用css截取字符的几种方法详解(css排版隐藏溢...
▪页面遮罩层,并且阻止页面body滚动。bootstrap...
▪CSS可以做的几个令你叹为观止的实例分享
▪详细分析css float 属性以及position:absolute 的区...
▪IE6/IE7/IE8/IE9中tbody的innerHTML不能赋值的完美解...
▪CSS小例子(只显示下划线的文本框,像文字一...
▪可以给img元素设置背景图
▪不通过JavaScript实现的自动滚动视差效果
▪div+CSS 兼容小摘
▪CSS的inherit与auto使用分析
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3