作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 jquery 新手,我想在调用函数时向我的页面添加一个对话框。每当我从控制台调用此函数时,都会显示该对话框,但出现以下错误。这意味着什么以及如何解决?
Uncaught TypeError: a(...).parents(...).andSelf is not a function
at d (jquery-ui.min.js:5)
at c (jquery-ui.min.js:5)
at Array.tabbable (jquery-ui.min.js:5)
at jquery.min.js:2
at r (jquery.min.js:2)
at se.select (jquery.min.js:2)
at Function.se [as find] (jquery.min.js:2)
at k.fn.init.find (jquery.min.js:2)
at a.<computed>.<computed>.open (jquery-ui.min.js:5)
at a.<computed>.<computed>._init (jquery-ui.min.js:5)
我使用了这些 jquery 库:
<script src="../vendor/jquery/jquery.min.js"></script> //Given with my bootstrap theme
<script src="../vendor/jquery-easing/jquery.easing.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
我调用的函数就是这个:
function afficherPopupErreur() {
$('body').append('<div id="dialog" title="Basic dialog"><p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the x icon.</p></div>');
$( "#dialog" ).dialog();
}
我知道这个附加很奇怪,但这只是为了尝试对话框。
最佳答案
.andSelf()
在 jQuery 1.8 中已弃用,并在 jQuery 3.0 中删除。
.addBack()
。
尝试在代码中将“andSelf”替换为“addBack”
关于javascript - JQuery UI 对话框 : TypeError: a(. ..).parents(...).andSelf 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60770427/
我是一名优秀的程序员,十分优秀!