English 中文(简体)
ob和肥料(a).foo——如何解决这一问题? (ide)
原标题:obj.foo() and obj(a).foo - how is the solution to do this ? (idea by jQuery)

首先,对我的可怕的官兵感到担忧。 我必须这样做,并且将给予我最好的帮助。

我用刀子为我试着一些新东西。 i 得到平衡。 有两个

采用不同方式与 j或 $合。

jQuery(arg).foo(); // first way
jQuery.foo();      // second way

现在,我想要与物体相同。

obj(arg).foo();
obj.foo();

我的第一个问题是: 怎样才能使质量成为一种能够归还物体和成为物体的功能

同样的方式?

obj(arg).foo(); 

seems like a function that returns an object. But

obj.foo();

似乎就是一个目标。

我试图与肥胖症和肥胖症(foo)做一些工作,但没有任何工作——无论怎样,我都试图找到一个错误,即:没有定义。

你们是否知道 j是如何解决的,以这种不规范的方式登记变幻灯?

下面是我想要实现的(《刑法》工作!)

myClass = function () {
   this.foo() {
      window.alert( foo()! );
      return this;
   }
}
var myObj = new myClass();
function obj() {
    return myObj.foo(arguments);
}

var obj = {
            secondFoo : function () {
                                        myObj.foo();
                                    }  
          };


obj( arg ).foo();     // alert(foo()!) && alert(foo()!)
obj.secondFoo();      // alert(foo()!)
obj( arg );           // alert(foo()!)
问题回答

http://jsfiddle.net/UD2Mv/1/“rel=“nofollow” http://jsfiddle.net/UD2Mv/1/。

基本来说,“Query”总是回到自己(实际上不是“j Query”物体,而是“j Query.fn”的例子),除非该职能要求能够归还。

因为它归还了所有的财产和方法,并且作为链条提供。 j鱼的骗子确实是,它会在这个范围内储存元素,而是使用像阵列中那样的惯用钥匙。

我在这方面的例子中做了些什么。

this[0] = document.getElementById(id);

这意味着这一要素现在储存起来,并提供给所有属于这一组成部分的方法,因此,当我称之为“彩色”使我成为目标要素时。

这里是法典

function wrap(id) {
    return new wrap.init(id);
};

wrap.init = function(id) {
    this[0] = document.getElementById(id);
    return this;
};

wrap.init.prototype = {
    colorMe: function(color) {
        this[0].style.color = color;
        return this;
    }
};

$(function() {
    wrap( boo ).colorMe( red );
});

Java稿中,所有职能也属于目标。

页: 1

someFunction.someProperty = function() { ... };

someFunction.someProperty();




相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签