jQuery的静态方法和实例方法

Posted god1

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery的静态方法和实例方法相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>08-静态方法和实例方法</title>
<script src="../js/jquery-3.4.1.js"></script>
<script>
function AClass() {

}
AClass.staticMethod = function () {
alert("staticMethod");
}

AClass.staticMethod();

AClass.prototype.instanceMethod= function () {
alert("instanceMethod");
}
var a=new AClass();
a.instanceMethod();


</script>
</head>
<body>

</body>
</html>

以上是关于jQuery的静态方法和实例方法的主要内容,如果未能解决你的问题,请参考以下文章

jQuery学习手册

jQuery的核心对象原型对象静态方法动态方法

JQuery工具方法,实例方法

jQuery入门-----jQuery中的静态方法

jQuery动画+实例

C#中静态方法和实例化方法的区别