gpt4 book ai didi

jQuery 1.6.2 错误,不支持操作”代码 : "9

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

我在 firebug 中收到以下错误:jQuery 1.6.2 错误,操作不受支持”代码:“9。首先有人可以告诉我这个错误的确切含义吗?其次,我正在做的是使用对话框显示一个表单,该表单显示正常,但是每当我单击输入字段时,它就会触发此错误。我已附上我的代码,非常感谢您的指导:

jQuery 1.6.2jQuery-ui 1.8.14

// Help function

function help() {

$(function () {

$('#feedback').dialog({
resizeable: true,
title: "Mail Help",
width: 500,
height: 420,
modal: true,
overlay: {
backgroundColor: "#000",
opacity: 0.3
}


});
$("feedback").dialog('open');
});
}


// Feedback form
<div id="form" style="display:none;">
<form method="post" id="feedback" class="webform" name="feedback">


<label for="company">Company</label>
<select name="company" id="company">
<option SELECTED VALUE="">Select an option</option>
<option value="Technical">Technical</option>
<option value="Database">Database</option>
<option value="Error">Error</option>
<option value="Other">Other</option>
</select>
<label for="name">Full Name:</label>
<input id="uname" name="uname" type="text" class="text ui-widget-content ui-corner-all inputbox uname" value="<?php echo $_SESSION['kt_name_usr']; ?>" />
<label for="email">Email address:</label>
<input id="email" name="email" type="text" class="text ui-widget-content ui-corner-all inputbox email" value="<?php echo $_SESSION['kt_email_usr']; ?>" />
<label for="position">Position:</label>
<input id="position" name="position" type="text" class="text ui-widget-content ui-corner-all inputbox position" />
<label for="feedbacknew">Feedback:</label>
<textarea id="feedbacknew" name="feedbacknew" cols="25" rows="3" type="text" class="text ui-widget-content ui-corner-all inputbox feedbacknew">Please make sure that any error messages or numbers are listed here </textarea><br />

<button id="submit" class="submit">Submit</button>
<div id="message"></div>
</form>
</div>

最佳答案

找到了如何在我的一些案例中修复它。

在 jQuery 源代码(不是 min)中找到这个 block :

if ( document.documentElement.contains ) {
Sizzle.contains = function( a, b ) {
return a !== b && (a.contains ? a.contains(b) : true);
};

} else if ( document.documentElement.compareDocumentPosition ) {
Sizzle.contains = function( a, b ) {
return !!(a.compareDocumentPosition(b) & 16);
};

} else {
Sizzle.contains = function() {
return false;
};
}

并为行添加 try-catch return !!(a.compareDocumentPosition(b) & 16);

if ( document.documentElement.contains ) {
Sizzle.contains = function( a, b ) {
return a !== b && (a.contains ? a.contains(b) : true);
};

} else if ( document.documentElement.compareDocumentPosition ) {
Sizzle.contains = function( a, b ) {
try {
return !!(a.compareDocumentPosition(b) & 16);
}
catch (e) {
return false
}
};

} else {
Sizzle.contains = function() {
return false;
};
}

为什么会发生这种情况,您可以阅读here在异常(exception)部分。

关于jQuery 1.6.2 错误,不支持操作”代码 : "9,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6691734/

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