gpt4 book ai didi

javascript - Drupal 7 jQuery 脚本的类型错误 : $ is not a function

转载 作者:行者123 更新时间:2023-12-01 01:58:09 25 4
gpt4 key购买 nike

我有一些 JS 代码,但 Drupal 7 无法识别它。我收到以下错误:

TypeError: $ is not a function

有人可以帮我让这个脚本工作吗?我正在使用 jQuery v1.4.4。

<script type="text/javascript">
this.screenshotPreview = function(){
/* CONFIG */

xOffset = 10;
yOffset = 30;

// these 2 variable determine popup's distance from the cursor
// you might want to adjust to get the right result

/* END CONFIG */
$("a.screenshot").hover(function(e){
this.t = this.title;
// this.title = "";
var c = (this.t != "") ? "<br/>" + this.t : "";
$("body").append("<p id='screenshot'><img src='"+ this.rel +"' alt='url preview' />"+ c +"</p>");
$("#screenshot")
.css("top",(e.pageY - xOffset) + "px")
.css("left",(e.pageX + yOffset) + "px")
.fadeIn("fast");
},
function(){
this.title = this.t;
$("#screenshot").remove();
});
$("a.screenshot").mousemove(function(e){
$("#screenshot")
.css("top",(e.pageY - xOffset) + "px")
.css("left",(e.pageX + yOffset) + "px");
});
};


// starting the script on page load
$(document).ready(function(){
screenshotPreview('some text');
});
</script>

最佳答案

尝试将“$”快捷方式的所有实例更改为“jQuery”,它应该可以工作。例如,调用 snapshotPreview 函数将如下所示:

// starting the script on page load
jQuery(document).ready(function(){
screenshotPreview('some text');
});

或者将所有 jQuery 代码包含在一个以 jQuery 作为参数的函数中,然后 $ 快捷方式应该可以工作。

// We define a function that takes one parameter named $.
(function ($) {
// Use jQuery with the shortcut:
console.log($.browser);
// Here we immediately call the function with jQuery as the parameter.
}(jQuery));

(来源:https://drupal.org/node/171213)

关于javascript - Drupal 7 jQuery 脚本的类型错误 : $ is not a function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23720918/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com