それで、いくつかのチュートリアルを読みましたが、特定のタグ付けシステムを使用可能なプラグインに変える方法をまだ混乱しています.
私は次のような関数の束で宣言された次のオブジェクトを持っています:
var Tags = {};
Tags.Class = function() {
...
};
次に、プロトタイプを宣言します。
Tags.TaggingForm = new Tags.Class();
// Only takes text input fields for now!
Tags.TaggingForm.prototype = {
initialize: function(tag_field){
...
},
hideInputField: function() {
...
},
次に、そのオブジェクトを使用する実際の関数呼び出しがあります。
Tags.make_tagging_input = function (id) {
var
tagger = new Tags.TaggingForm(id);
...
}
これをどのようにプラグインに変えることができるのか疑問に思っています:現在、私はそれを次のように呼んでいます:
window.g_gloab_var = Tags.make_tagging_input("#id");
このスケルトンは提案され続けていますが、それを適用する方法がわかりません:
//You need an anonymous function to wrap around your function to avoid conflict
(関数($){
//Attach this new method to jQuery
$.fn.extend({
//This is where you write your plugin's name
tags_input: function() {
//Iterate over the current set of matched elements
return this.each(function() {
//code to be inserted here
});
}
});
//pass jQuery to the function,
//So that we will able to use any valid Javascript variable name
//to replace "$" SIGN. But, we'll stick to $ (I like dollar sign: ) )
})(jQuery);