如何调用我的函数" $(obj).my_function()"?

时间:2016-03-30 17:45:18

标签: jquery

我想知道如何调用我自己的函数:

<?xml version="1.0" encoding="UTF-8"?>
<List>
    <Data name="A" description="Test1">
        <Attribute Name="Width" Value="33"></Attribute>
        <Attribute Name="Height" Value="50"></Attribute>
        <Attribute Name="Length" Value="25"></Attribute>
    </Data>
    <Data name="B" description="Test2">
        <Attribute Name="Width" Value="55"></Attribute>
        <Attribute Name="Depth" Value="88"></Attribute>
    </Data>
</List>

&#34; my_calendar&#34;是我的功能名称。

感谢。

1 个答案:

答案 0 :(得分:1)

jQuery.fn.extend()方法扩展了jQuery原型($.fn)对象,以提供可以链接到jQuery()函数的新方法。

$.fn.extend({
  my_calendar: function(){...}
});