Giter Club home page Giter Club logo

jquery-api-zh-cn's People

Watchers

 avatar

jquery-api-zh-cn's Issues

_gat is not defined

env:
   fc8 
    firefox3.08
错误:
_gat is not defined
http://jquery-api-zh-cn.googlecode.com/svn/trunk/xml/jqueryapi.xml Line 1

描述:
 http://jquery-api-zh-cn.googlecode.com/svn/trunk/xml/jqueryapi.xml  不能查
看(文件已经下载),停留在载入状态。
状态栏:已读取 www.google-analytics.com

Original issue reported on code.google.com by [email protected] on 7 Apr 2009 at 6:31

jQuery-1.3.2-vsdoc 重要更新

之前的版本有一个导致语法提示无法工作的BUG,请去项目首��
�下载 v1.1 版本。新版
本已更新至 SVN 库。

Original issue reported on code.google.com by [email protected] on 7 Jan 2010 at 4:43

jquery update

jquery http://code.jquery.com/jquery-1.4.2.js
Visual Studio http://code.jquery.com/jquery-1.4.1-vsdoc.js

Original issue reported on code.google.com by [email protected] on 22 Feb 2010 at 8:48

jQuery 1.3 中文参考文档 XML 转 CHM 版 2009-02-21 的速查表中部分链接错误

在"工具"->"数组和对象操作"下
$.grep(arr, fn, [invert])
链接: jQuery.grep_arr_callback_invert.xml
应为: jQuery.grep_array_callback_invert.xml

$.map(arr, callback)
链接: jQuery.map_arr_callback.xml
应为: jQuery.map_array_callback.xml

$.inArray(value, arr)
链接: jQuery.inArray_value_arr.xml
应为: jQuery.inArray_value_array.xml

$.unique(arr)
链接: jQuery.unique_arr.xml
应为: jQuery.unique_array.xml

Original issue reported on code.google.com by Mr.Lodar on 23 Feb 2009 at 3:16

在速查表中点unbind会出现404页面,

刚发现的,在速查表中点unbind会出现404页面,而在目录列表��
�点正常,

另,能否更新下版本啊,1.4.2中新加了几个很有用的函数,希
望能加入

Original issue reported on code.google.com by [email protected] on 9 Jun 2010 at 2:55

CSS部分函数缺失

1.2.6引入了DIMENSIONS插件。

Original issue reported on code.google.com by cloudream on 7 Nov 2008 at 10:19

关于插件机制中的extend参数

关于参数说明,如果能够详细些可能更好
原型应是:
jQuery.extend( [deep], target, obj1, [objN] )

参数说明:

deep(Boolean):可选,决定是否深度扩展。
如果第一个参数为boolean类型变量,此时第二个参数则作为exte
nd方法的目标对象,其后的参
数是需要进行继承的父类。
如果第一个参数的值为true(或1)时,将进行深层copy,在taget和o
bjN元素都包括相同名称的
对象属性情况下,会对该对象属性的方法和属性再进行一次��
�制。 

target(str,obj,fun):扩展目标
obj(obj,fun):更多对象

只有一个参数时,扩展目标为this

target后的obj参数为N个时,对象的属性和方法将递次复制到targ
et对象,与设置了deep为
true不同的是,后面的参数将会覆盖前面参数的属性和方法,�
��一按层次的父类继承。


---------
供揪哥参考

Original issue reported on code.google.com by [email protected] on 21 Apr 2009 at 11:13

fadeOut的问题

最新版的fadeOut函数把对象透明度设为最大后又设置display:'none
'了。和描述的不符合,我觉得并不应该影响display属性

Original issue reported on code.google.com by [email protected] on 24 Jun 2010 at 7:11

fadeOut(),animate() bug in IE6、IE7、IE8

What steps will reproduce the problem?
1. fadeOut(),animate() bug in IE6、IE7、IE8。

What is the expected output? What do you see instead?
fadeOut(),animate()  in '<div style=""></div>' and '<div class=""></div>' 
is not very well. 


What version of the product are you using? On what operating system?
windows xp , jquery-1.3.2.min.js


Please provide any additional information below.
I want to change 'opacity' from 0.1 to 0.2. In 'animate1' , div's opacity
will up to 1 and then fade out to 0.2. 'animate2' is right.

please run there code in IE6,IE7,IE8:

          <style type="text/css">

.test{width:100px;height:100px;top:0px;left:0px;background-color:#000000;}
          .test1{filter:alpha(opacity=10);moz-opacity: 0.1;opacity:0.1;}
          .tips{font-weight:bold;font-size:14px;color:#ff0084;margin-top:20px}
        </style>
        <script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
        <script type="text/javascript">
          $(document).ready(function(){
              $('#animate1').click(function(){
                $('#test1').animate({opacity:0.2});
              });
              $('#animate2').click(function(){
                $('#test2').animate({opacity:0.2});
              });
            }
          );
        </script>
        <div class="tips">error:</div>
        <div id="test1" class="test test1"></div>
        <div>
          <input type="button" id="animate1" value="animate1"/>
        </div>
        <div class="tips">success:</div>
        <div id="test2" class="test"
style="filter:alpha(opacity=10);moz-opacity: 0.1;opacity:0.1;"></div>
        <div>
          <input type="button" id="animate2" value="animate2"/>
        </div>

Original issue reported on code.google.com by [email protected] on 8 Sep 2009 at 5:32

jQuery.Ajax中没有1.4的新特性

1.4版本的Ajax新特性好像都没有在文档中体现出来

Original issue reported on code.google.com by yanhonglei on 22 Jan 2010 at 1:26

一点小忽略 : )

jQuery.support中

scriptEval: 使用 appendChild/createTextNode 
方法插入脚本代码时,浏览器是否执行

脚步

应是脚本

Original issue reported on code.google.com by [email protected] on 21 Feb 2009 at 7:36

事件->缺少mouseenter和mouseleave

原文在
http://api.jquery.com/mouseenter/
http://api.jquery.com/mouseleave/

做一个div关于事件冒泡处理时发现的,挺有用的鼠标事件

Original issue reported on code.google.com by [email protected] on 31 Mar 2010 at 3:33

Spelling mistake

What steps will reproduce the problem?
1. Nav to 筛选 > 查找 > children(expr)
2. Find 
'可以通过可选的表达式来过滤所匹配的子元素。注意:parents
()将查找所
有祖辈元素,而children()之考虑子元素而不考虑所有后代元素�
��'
3.

What is the expected output? What do you see instead?
The sentence should be 
'而children()只考虑子元素而不考虑所有后代元素。'.

What version of the product are you using? On what operating system?


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 14 Oct 2008 at 9:04

jQuery 1.3发布日期

"关于jQuery 1.3 版翻译
jQuery 1.3自从2008年1月14日发布后,
"


【2008年】估计不对吧?

Original issue reported on code.google.com by [email protected] on 20 Jan 2009 at 7:40

jquery ui 中文帮助文档能不能做一个CHM

jquery ui 的中文帮助文档能不是做一个CHM 的提供下载, 
或是将 jquery ui 中文
帮助单独打个包出来也行, 现在只能通过 SVN 将源码 check 
out, 太不方便 了

Original issue reported on code.google.com by [email protected] on 6 Nov 2009 at 9:06

toggleClass

离线版 toggleClass(class) 内容是removeClass(function(index, class))

离线版 changlog 内容全部是乱码

Original issue reported on code.google.com by [email protected] on 4 Feb 2010 at 9:14

语法格式呢?

首先呢,很感谢。

但不得不指出,里面居然没有写部件的语法格式,只能通过��
�子来判断,而往往,例子又不算是
经典。

如果是原著的问题的话,我希望我们可以不只是“照搬”。

当然了,配色啊,什么的,都挺好。

——擎风

Original issue reported on code.google.com by [email protected] on 8 Feb 2010 at 4:58

jQuery-1.3.2-vsdoc-zh

终于校对完成了,尝试往本站的SVN库里提交,提示没有权限��
�后面不知道该怎么做了。

Original issue reported on code.google.com by [email protected] on 21 Dec 2009 at 2:09

toggleClass 函数的说明实例代码描述错误

示例代码为:
  var count = 0;
  $("p").click(function(){
      $(this).toggleClass("highlight", count++ % 3 == 0);
  });

示例描述中说"每点击三下加上一次 'selected' 类"

应该是"highlight"类而不是"selected"类


Original issue reported on code.google.com by [email protected] on 26 Jan 2010 at 7:13

http://jquery-api-zh-cn.googlecode.com/svn/trunk/xml/jqueryapi.xml

http://jquery-api-zh-cn.googlecode.com/svn/trunk/xml/jqueryapi.xml

选择器 - selector1,selector2,selectorN - 示例 - 结果:

HTML 代码:
<div>div</div>
<p class="myClass">p class="myClass"</p>
<span>span</span>
<p class="notMyClass">p class="notMyClass"</p>


jQuery 代码:
$("div,span,p.myClass")


结果:
[ <div>div</div>, <p class="myClass">p class="myClass"</p>, 
<span>span</span> ]

这个结果的顺序是不是错了?

不好意思,我刚学。。。感觉这个地方无法理解

Original issue reported on code.google.com by [email protected] on 25 Dec 2009 at 7:25

选择器-表单-:input的实例代码的结果不对,已经过验证和查看原始英文文档

示例
描述:
查找所有的input元素

HTML 代码:
<form>
  <input type="text" />
  <input type="checkbox" />
  <input type="radio" />
  <input type="image" />
  <input type="file" />
  <input type="submit" />
  <input type="reset" />
  <input type="password" />
  <input type="button" />
  <select><option/></select>
  <textarea></textarea>
  <button></button>
</form>jQuery 代码:
$(":input")结果应该如下才对:
[ <input type="text" />, <input type="checkbox" />, <input 
type="radio" />, <input type="image" />, <input type="file" />, <input 
type="submit" />, <input type="reset" />, <input type="password" />, 
<input type="button" /> <select><option/></select>
  <textarea></textarea>
  <button></button>
 ]

Original issue reported on code.google.com by [email protected] on 2 Feb 2010 at 9:18

jQuery-1.3.2-jsDoc-zh-Spket-Profile

修改完了,本jsDoc版是从jquery-1.3.2.min-vsdoc.js中替换得来的,��
�以他的里面
有什么错误,我的这里就有什么错误^_^

在此感谢做翻译以及提供文档的各位朋友。

使用时要注意文件的编码,应该是UTF-8(带BOM,否则会是乱码
)。
顺便提一下Spket 
IDE自动完成的问题,如果自动提示没有出来,先检查文件的��
�码,
是UTF-8(带BOM),还不行的话就试一下Reload JavaScript 
Profile,在Spket IDE
1.6.18中,Reload JavaScript Profile功能是在Project 
Explorer项目的右键菜单中的。

Original issue reported on code.google.com by [email protected] on 11 Jan 2010 at 1:27

Attachments:

很轻微的小疏忽

位于 工具 -> 数组和对象操作 ->jQuery.extend 页

'为'   定义的属性将不会被复制 
上面引号括起的应是' 未 '字。

另外此最后示例中的jquery代码,既然是代码,
var empty = {}这里漏了‘ ; 
’,没有分号时如果代码分行的话会正常,
压缩后就不知道会不会了。所以仅作参考。

Original issue reported on code.google.com by [email protected] on 13 May 2009 at 10:08

jQuery-1.3.2-jsDoc-zh-Spket-Profile

修改完了,本jsDoc版是从jquery-1.3.2.min-vsdoc.js中替换得来的,��
�以他的里面
有什么错误,我的这里就有什么错误^_^
在此感谢翻译机提供文档的各位。

使用时要注意文件的编码,应该是UTF-8(带BOM,否则会是乱码
)。
顺便提一下Spket 
IDE自动完成的问题,如果自动提示没有出来,先检查文件的��
�码,
是UTF-8(带BOM),还不行的话就试一下Reload JavaScript 
Profile,在Spket IDE
1.6.18中,Reload JavaScript Profile功能是在Project 
Explorer项目的右键菜单中的。

Original issue reported on code.google.com by [email protected] on 11 Jan 2010 at 1:23

Attachments:

无event.which等方法的说明

http://api.jquery.com/category/events/

event.which

Description: For key or button events, this attribute indicates the specific 
button or key that was pressed.
version added: 1.1.3event.which

event.which normalizes event.keyCode and event.charCode. It is recommended to 
watch event.which for keyboard key input. For more detail, read about 
event.charCode on the MDC.

Original issue reported on code.google.com by [email protected] on 15 Jul 2010 at 2:29

chm文件一部分链接打不开

非常感谢大家,由于大家的无私奉献,才让我学习jQuery的时��
�有中文文档查阅,降
低了学习难度。
因为在公司里,我使用的是日文操作系统,所以以下文件部��
�或者全部打不开。
■jquery_api.chm
    关于本书
    jQuery简介
    入门指南
  这三个链接打不开。
关于本书的链接,在页面属性那里看到的信息是这样的
res://C:\WINDOWS\system32\shdoclc.dll/dnserror.htm#mk:@MSITStore:D:\jquery
\jquery_api.chm::/ケリモレアセハ・html
■jQuery_1.2_API_0810.CHM
 所有的链接都打不开

估计是因为在制作chm文件的时候,试用的html文件名字和路径�
��有中文,
而我使用的操作系统是日文的,所以导致文件内部链接变成��
�码,所以打不开。
Firefox+chm插件之后,能正确的打开chm,
但是没有索引,只能看到第一个链接的内容。

希望能制作没有中文路径和中文名字的版本的chm文件,
或者能提供制作chm文件的html文件,我制作这样的文件,然后�
��传到这里来。
(KeyTools http://www.keyworks.net/keytools.htm 似乎也可以制作chm文件)
我的联系方式 stoneqduc(AT)gmail.com
可能是很无理的要求,希望能得到回应。

Original issue reported on code.google.com by [email protected] on 14 Jan 2009 at 2:45

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.