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的静态方法和实例方法的主要内容,如果未能解决你的问题,请参考以下文章