$('#calendar').on('mouseover', function() {
$('#calendarTool').css('background', 'blue');
});
$('#calendar').on('mouseout', function() {
$('#calendarTool').css('background', 'transparent');
});
我使用上面的代码从yahoo下载数据。我从雅虎获得的数据不包括代码。它只有date,close_price等。 我还想将股票代码添加到文件中 我怎么能这样做?
提前致谢