我想知道如何调用我自己的函数:
<?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;是我的功能名称。
感谢。
答案 0 :(得分:1)
jQuery.fn.extend()
方法扩展了jQuery原型($.fn
)对象,以提供可以链接到jQuery()
函数的新方法。
$.fn.extend({
my_calendar: function(){...}
});