gpt4 book ai didi

javascript - 更新 : Changing the color of Negative Predetermined Value Using Javascript/Jquery

转载 作者:行者123 更新时间:2023-11-28 02:52:06 25 4
gpt4 key购买 nike

我正在开展一个元素,使用 D3.js 从 CSV 文件的表格中获取值(一年中目录的毛利润)。

想法是当 CSV 文件中的数字发生变化时,html 格式将在刷新时更改为新值。示例:今天我们制作了 $xx.xx 数量(在 CSS 中应该是绿色样式)但是第二天我们制作了 -$xx.xx(该值将是红色样式,因为我们是负数)。

更新:

这是新代码,用于更好地控制哪些表的文本颜色会发生变化(如果是负值或正值):

$( document ).ready( function() {
$( '#tableTwo tr' ).each(function() {
$( this ).find( 'td' ).each(function() {
//if cell value is less than 0, then change font color.
console.log( $( this ).html() );
});
});
});

如果为负,则假设更改预定值,但没有收到错误,也没有任何更改。此代码的脚本标签位于表格标签下方,因为 d3.js 也位于表格标签的底部。这样做的原因,在 d3.js 中有调用 html 中的 div 的函数,也可以从 csv 中放置数据:

    <link rel="stylesheet" type="text/css" href="jean.css"/>
<link rel="stylesheet" type="text/css" href="bootstrap.min.css">
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
</head>
<body>
<div class="container">
<div><h1 id = "headerFormat">Catalog 6F Matchback Report</h1> </div>

<div id="firstCSV"></div>
<div id="secondCSV"></div>
<div id="thirdCSV"></div>
<table id ="theSecretOne">
<thead>
<tr>
<th>Labor Cost Parameter</th>
</tr>
</thead>
<tbody>
<tr>
<td>Labor Cost</td>
<td>7%</td>
</tr>
</tbody>

</table>
<div id ="fourthCSV"></div>
<table id = "findMEPosition">
<tbody>
<tr>
<td>report revenue /cost corresponds to catalog allocated revenue/cost</td>
</tr>
</tbody>
</table>
<div id="fifthCSV"></div>
<div id="sixthCSV"></div>
<div id="seventhCSV"></div>
<div id="miscPosition"></div>
<!--<script>
$(document).ready( function(){
$("td.of_number_be_evaluated:contains('-')").addClass('red');
$("td.of_number_be_evaluated:contains('+')").addClass('green');
});
</script>-->

</div>
</body>
<script type='text/javascript' src="jean.js"></script> <!-- d3.js script to fill the table from the CSV file-->

<script type='text/javascript' src="numberColorChange.js"></script> <!-- color Change script-->
</html>

我发现在 Chrome 检查页面上的 jQuery 代码之前放置一个断点后,D3.js 在 jQuery 代码之后运行,结果没有变化。是否有某种类型的函数可用于延迟 jQuery 脚本,以便 D3.js 可以将值放入要读取的表中?

谁能帮帮我?如果需要更多编码,我可以提供更多,因为使用虚拟数据来查看该元素需要多长时间。

最佳答案

因此,我在处理 CSV 文件数据时意识到,当我想更改为不同的值(货币、数字、小数等)时,EXCEL 正在更改值以适应其结构。因此,我在 Sublime Text 上打开 CSV 文件以查看这些值的实际格式。

然后,我使用来自 Use JQuery to Highlight Values in a Table 的 Javascript

即使我在 Sublime 中更改文本,颜色也会完全改变。感谢所有为我指明正确方向的人。

关于javascript - 更新 : Changing the color of Negative Predetermined Value Using Javascript/Jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38979939/

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