如何比较两列的值,然后根据循环中的比较更改文本
我需要遍历数据网格的循环,将值column1.cell1与column2.cell1进行比较,然后将column1.cell2与column2.cell2等进行比较...并根据比较显示第一列中带有文本的图像,
我应该首先需要将两列的值放入两个数组中进行比较?或者应该是什么代码
$('#dataGrid tr th').each(function() {
??
});
I need to go through loop for data grid, compare values column1.cell1 with column2.cell1 and then column1.cell2 with column2.cell2 and so on... and based on comparison show an image with text in first column
should I first need to put values of two columns in two arrays to compare? Or what should be code
$('#dataGrid tr th').each(function() {
??
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个。给出的例子可能对你有帮助。
HTML:
JQUERY:
单击此处查看演示
Try this one.Given example may be helpful for you.
HTML:
JQUERY:
CLICK HERE TO SEE THE DEMO