我可以在 div 中获取所有条目的属性,如样式显示。但我无法以同样的方式获得数据值。我需要找到正确的语法来获取所有数据值条目。
$.ajax({
url:"{{ url_for('fetch_bar') }}",
type:"post",
dataType: "json",
async: true,
success:function(response){
var response = JSON.parse(response);
var len = Object.keys(response).length;
var selects = document.querySelectorAll("select[id=select_host]");
var bars = document.querySelectorAll("[id=ldBar]");
if (len == 1) {
....
}
else if (len > 1)
for( var ind = 0; ind < len; ind++){
for (var index = 0; index < selects.length ; index++)
if (selects[index].value == response[ind].hostname)
// alert(bars[index].style.display)
alert(bars[index].data-value)
// alert(bars[index].[data-value])
<td>
<input id="stage" type="button" class="btn-primary" onclick="readTextFile();" name="stage" value="{{entry.stage}}" >
<div id="ldBar" class="ldBar label-center" data-value="0" data-preset="stripe" data-aspect-ratio="none" style="width:100%;display: block;" ></div>
</td>
<td>
www说
FFIVE
相关分类