新时达股票代码:300235
最新股价:
更新时间:
基本信息
-
公司名称:新时达科技股份有限公司
-
行业:电子元器件
-
注册地:浙江省宁波市
-
上市日期:2011年2月18日
-
流通股本:3.2亿股
-
总股本:6.4亿股
历史股价
相关新闻
// 实时更新股票价格和更新时间function updateStockPrice() {const stockPriceElement = document.getElementById('stock-price');const lastUpdatedElement = document.getElementById('last-updated');const request = new XMLHttpRequest();request.open('GET', 'https://hq.sinajs.cn/list=sh300235');request.onload = function() {if (request.status === 200) {const data = request.responseText.split(',');stockPriceElement.innerHTML = data[3];lastUpdatedElement.innerHTML = data[30];}};request.send();}// 定时更新股票价格setInterval(updateStockPrice, 10000);// 获取历史股价数据function getHistoricalPrices() {const tableBody = document.getElementById('historical-prices').getElementsByTagName('tbody')[0];const request = new XMLHttpRequest();request.open('GET', 'https://stock.finance.sina.com.cn/apis/charts/kline/day/300235.json?days=30');request.onload = function() {if (request.status === 200) {const data = JSON.parse(request.responseText);for (let i = 0; i
版权声明:除非特别标注,否则均为本站转摘于网络,转载时请以链接形式注明文章出处。