Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6386805
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T03:04:21+00:00 2026-05-25T03:04:21+00:00

I have used both protoype and jquery. Sometimes I have to build some custom

  • 0

I have used both protoype and jquery.

Sometimes I have to build some custom functions,for exmaple,I want to make a common Search class,in prototype I may write it this way:

var Searcher=Class.create();
Searcher.prototype={
  initilize:function(xxx){},
  search:function(url,para){
    //here ,I may use some internal method,
    this._check(url,para)
  }
  _check:function(url,para){}
}

In the above code,in the method of “search”,I need “_check” method which maybe used repeated. So I extra the codes to the function “_check”.

However when I want to do the samething in jquery,I do not know how to do :

(function($){
  $.search=function(xxxx){
    //how about if I want to extra some common codes to a method,where to place it?

    //here?
    function _check(xxxx){}
  }

  //or here?
  $._check=function(xxxx) {}
})(JQuery)

It seems that the prototype should be preferred when build custom util class,but I really like the dom operation manner such as the “chain operation”,the “css”,the ….

How do you guys do?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T03:04:21+00:00Added an answer on May 25, 2026 at 3:04 am

    In jQuery, this is the usual pattern of private utility functions that your plug-in function may use:

    (function($){
      $.search=function(xxxx){
        // You can use _check() here
      };
    
      function _check(xxxx) {
        // Do the work that _check does
      }
    })(jQuery)
    

    (Also note that the j in jQuery is in lower, not upper, case.)

    Because I’m keen on named functions, I usually take it a step further:

    (function($){
      $.search=search;
    
      function search(xxxx){
        // You can use _check() here; if you want to pass on `this`, either
        // do it as an argument or do this:  _check.call(this, xxxx);
      }
    
      function _check(xxxx) {
        // Do the work that _check does
      }
    })(jQuery)
    

    In both cases, your _check function is completely private to your plug-in, because it’s scoped to the anonymous function you’ve used to wrap your plug-in.


    Side note: Your Prototype example is out of date. That style of use of Class.create dates from v1.5. Since v1.6 was released (four years ago), you do this:

    var Searcher=Class.create({
      initialize:function(xxx){},
      search:function(url,para){
        //here ,I may use some internal method,
        this._check(url,para)
      }
      _check:function(url,para){}
    });
    

    Note how I’m passing the object defining the methods for the prototype into Class.create, not replacing the prototype afterward. Prototype v1.6 and above do plumbing for you on the prototype that you lose if you replace it. It’s probably also worth pointing out that your _check method is not private, anyone can call it. If you really want it to be private, you can use the same technique as above:

    var Searcher = (function() {
      var rv = Class.create({
        initialize:function(xxx){},
        search:function(url,para){
          //here ,I may use some internal method,
          _check.call(this, url, para)
        }
      });
    
      function _check(url,para){}
    
      return rv;
    })();
    

    Note that the way you call _check changes. That’s how you do it if you want this to mean the same thing in _check that it does in search, or you can just make it an argument you pass to _check.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I find have used both these functions before, but I don't quite see the
I want to call an external program from Python. I have used both Popen()
I have used the using statement in both C# and VB. I agree with
I have a silly, little class FileSystemSize which can be used both as an
I have created a form that is used for both adding and editing a
I have a code in which Cstring and wchar_t both are used. I think
I have two SQL Server (2000) databases. Both are used for the same project,
As far as I remember, Visual Studio (both 2008 and 2010) used to have
I have heard both of these terms used, are they the same thing or
I have a logger class that is used all across my application, both in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.