我创建了一个自定义wordpress页面,但是我需要创建一个jquery函数
我在自定义页面中创建了该函数,但在调用该函数时我在控制台中出错:
(index):232 Uncaught TypeError: $ is not a function
at LoadModal ((index):232)
at HTMLButtonElement.onclick ((index):209)
答案 0 :(得分:0)
$ is not a function
表示未加载您的jQuery库。确保以正确的方式包含jQuery(例如在<head></head>
文件的index.html
中)
答案 1 :(得分:0)
您必须将此行添加到脚本的开头:
var $ = jQuery;