gpt4 book ai didi

javascript - 更新特定的 div id 类

转载 作者:行者123 更新时间:2023-11-28 06:23:05 26 4
gpt4 key购买 nike

我没有成功更改 ID 的类别。代码中的其他功能正在运行。单击 div 时,我想添加一个额外的 css 类。

<div id='31589' onclick='AddSeat(this.id)'>html</div>
<div id='31590' onclick='AddSeat(this.id)'>html</div>
<div id='31591' onclick='AddSeat(this.id)'>html</div>
function AddSeat(str) {
if (str == "") {
document.getElementById("Winkelmand").innerHTML = "";
return;
} else {
if (window.XMLHttpRequest) {
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
} else {
// code for IE6, IE5
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
document.getElementById("Winkelmand").innerHTML = xmlhttp.responseText;
}
};
xmlhttp.open("GET","winkelmand.php?q=" + str, true);
xmlhttp.send();
$(document.getElementById(str).className) += 'myseat';
}
}

最佳答案

document.getElementById 不是 jQuery 函数,但您使用的是用于 jQuery 的 $-sign。

因此要么删除 $-sign 符号,要么使用 Arun P Johny 的第二个建议:

$('#' + str).addClass('myseat')

关于javascript - 更新特定的 div id 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35455003/

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