gpt4 book ai didi

javascript - 出乎意料;在我的 javascript 中我不明白为什么

转载 作者:行者123 更新时间:2023-11-30 10:39:29 26 4
gpt4 key购买 nike

我添加了这段代码,现在我得到了一个意想不到的标记";"错误。

代码:

var i = 0;
var tabs = "";
while(i < idArray.length){
tabs = tabs + "<a href='#' onclick='tabs('"+ idArray[i] +"')'>"+ idArray[i] +"</a> &nbsp; &nbsp;";
alert(tabs);
i++;
}
$("#editme").html(tabs);

我不明白为什么。

有什么想法吗??

谢谢。

最佳答案

在 tabs() 中转义字符串:

tabs = tabs + "<a href='#' onclick='tabs(\""+ idArray[i] +"\")'>"+ idArray[i] +"</a> &nbsp; &nbsp;";
^ ^
here here

关于javascript - 出乎意料;在我的 javascript 中我不明白为什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11953059/

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