股票行情
实时行情
这只股票业绩不错,长期投资值得考虑。 发表评论: 提交指标 | 数据 |
---|---|
股票代码 | 601666 |
股票名称 | 平煤股份 |
最新价 | 12.34 |
涨跌幅 | -2.56% |
涨跌额 | -0.33 |
开盘价 | // 动态生成K线图const k线图 = echarts.init(document.getElementById('k线图'));const data = [[12.85, 12.28, 12.78, 12.34],[12.78, 12.56, 12.85, 12.56],[12.56, 12.45, 12.56, 12.45],[12.45, 12.34, 12.45, 12.33],[12.33, 12.28, 12.33, 12.30]];const option = {xAxis: {type: 'category',data: ['1', '2', '3', '4', '5']},yAxis: {type: 'value'},series: [{data: data,type: 'k',itemStyle: {color: data[0][3] > data[0][0] ? 'ef232a' : '14b8a6',borderColor: data[0][3] > data[0][0] ? 'ef232a' : '14b8a6'}}]};k线图.setOption(option);// 监听评论表单提交事件const commentForm = document.getElementById('comment-form');commentForm.addEventListener('submit', function (e) {e.preventDefault();const comment = document.getElementById('comment').value;if (comment.length === 0) {alert('评论不能为空'); return;}// 添加新评论到页面const newComment = document.createElement('li');const newCommentText = document.createElement('p');newCommentText.textContent = `用户名:${comment}`;newComment.appendChild(newCommentText);const commentList = document.getElementById('comment-list');commentList.appendChild(newComment);// 重置评论表单commentForm.reset();});
版权声明:除非特别标注,否则均为本站转摘于网络,转载时请以链接形式注明文章出处。