jquery插件问题

时间:2011-06-08 10:36:30

标签: javascript jquery

我试图弄清楚如何正确创建jquery插件。这是我做的事情

(function( $ ){

          $.fn.myPlugin = function() {
            console.log(this.eq(0).text());
          };
        })( jQuery ); 

$('#sector1').myPlugin();

这是html

<div id="sector1">
        <span class="timestamp">1</span>
    </div>
    <div id="sector2">
        <span class="timestamp">2</span>
    </div>

问题是我无法获得sector1 span标签的文本。 怎么做?

1 个答案:

答案 0 :(得分:0)

(function($) {
    $.widget("ui.myplugin", {
        _init: function() {
            var text = $("#sector1 .timestamp", this.element).html();
        }

    });
})(jQuery);