WEB 教程
实践 示例
HTML 参考手册
CSS 参考手册
PHP 参考手册

如何在jQuery中定义一个函数

主题:JavaScript / jQuery上一页|下一页

答案:使用语法$.fn.myFunction=function(){}

在 jQuery 中定义函数的语法与 JavaScript 略有不同。 让我们看一下下面的例子,了解如何在 jQuery 中定义一个函数。

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Define a Function in jQuery</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
    $.fn.myFunction = function(){ 
        alert('You have successfully defined the function!'); 
    }
    $(".call-btn").click(function(){
        $.fn.myFunction();
    });
});
</script> 
</head>
<body>
    <button type="button" class="call-btn">Click Me</button>
</body>
</html>

FAQ 相关问题解答

以下是与此主题相关的更多常见问题解答:

Advertisements