gpt4 book ai didi

javascript - Ajax语法: Uncaught SyntaxError: Unexpected identifier

转载 作者:行者123 更新时间:2023-11-27 22:40:12 26 4
gpt4 key购买 nike

我明白了

Uncaught SyntaxError: Unexpected identifier error

,为什么?我认为我已经正确使用了语法?

// I've revised it
var json;
json = '{"1438905600":0,"1438992000":0}';
setTimeout( $('#example-heatmap').each(function() {
if( json != null ){
var obj = $.parseJSON(json);
var now = new Date();
new CalHeatMap().init({
data: obj,
start: new Date(2016, 0),
cellSize: 11,
range: 9,
domain: 'month',
domainLabelFormat: '%Y-%m',
itemSelector: '#example-heatmap',
legend: [1, 3, 5, 7],
legendColors: {
min: '#efefef',
max: 'steelblue',
empty: '#efefef'
},
tooltip: true
//start: new Date(now.getFullYear(), now.getMonth() - 9)
});
} else {
setTimeout( arguments.callee, 100 );
}
}));

最佳答案

我认为您的 .replace() 不正确。

var tmp = content.replace('<![CDATA[').replace(']]>');

.replace() 需要 W3Schools 上给出的 searchvaluenewvalue

string.replace(searchvalue,newvalue) 

关于javascript - Ajax语法: Uncaught SyntaxError: Unexpected identifier,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38812396/

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