2

我试图使用 jQuery-UI 对话框和 uploadify 创建文件上传。我已经看到其他人也有类似的问题,但它总是 css 中的 z-index 或跨浏览器问题,这里不是这种情况,因为它在任何浏览器中都不起作用。当我将uploadify div(div是flash对象的占位符)放在jQuery对话框之外时,一切正常,但是当我尝试将它放在里面时,swf被加载但是当对话框弹出时我得到错误:jquery中的'预期对象'。 min.js 开启

var c=a.getAttributeNode("tabindex")

问题可能是由 jquery 版本引起的吗?当前版本是 1.7.1,我也尝试使用 1.9.0

4

2 回答 2

0

添加以下 CSS 类以覆盖默认z-index值 1

.swfupload {
    z-index: 10000 !important;
}
于 2013-02-11T08:39:36.517 回答
0

在 Flash 元素中缺少函数 getAttributeNode 和 getAttribute 时出现此错误。更改“jquery-min.js”

elem.getAttributeNode(name) // OR a.getAttributeNode(b)

(elem.getAttributeNode?elem.getAttributeNode(name):null) // OR (a.getAttributeNode?a.getAttributeNode(b):null)

elem.getAttribute(name) // OR a.getAttribute(b)

(elem.getAttribute?elem.getAttribute(name):null) // OR (a.getAttribute?a.getAttribute(b):null)
于 2015-03-23T05:43:22.843 回答