- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚刚遇到blast.js并在尝试运行 example 时遇到问题。该示例在 codepen 上完美运行,但在我本地的机器上不起作用。控制台报告以下警告和错误。非常感谢社区的帮助。
Warning: jQuery.Deferred exception: $(...).blast is not a function TypeError: $(...).blast is not a function
at HTMLDocument. (http://stacksnippets.net/js:24:6)
at j (https://code.jquery.com/jquery-3.1.1.min.js:2:29948)
at k (https://code.jquery.com/jquery-3.1.1.min.js:2:30262) undefinedError: { "message": "Uncaught TypeError: $(...).blast is not a function",
"filename": "https://code.jquery.com/jquery-3.1.1.min.js",
"lineno": 2,
"colno": 31635
}
/* jquery.js */
/* jquery.velocity.js */
/* velocity.ui.js */
/* jquery.blast.js */
$(document).ready(function() {
$("div")
// Blast the text apart by word.
.blast({
delimiter: "word"
});
});
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<div>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do. Eiusmod tempor incididunt ut labore et dolore magna aliqu.
</div>
最佳答案
您必须在 html 中导入 javascript 库;在你的代码中你只导入了 jQuery,但是在 CodePen 中,在 javascript 设置中,你可以看到
现在您的浏览器期望 .blast()
是 jQuery 中定义的函数,但由于它不是您会收到的错误。
关于javascript - blast.js 示例在代码笔上完美运行,但在本地运行不佳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42646427/
我是一名优秀的程序员,十分优秀!