本文介绍了JavaScript中的DataTable的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想用JavaScript创建与c#中的此代码等效的数据表:
I want to create table of data in JavaScript equivalent to this code in c#:
// Create DataTable to store the mobiles in it
DataTable dTable = new DataTable("mobiles");
DataTable dTable_Int = new DataTable("mobilesInt");
DataTable dTable_STC = new DataTable("mobilesSTC");
DataTable dTable_MobilyZain = new DataTable("mobilesMobilyZain");
DataColumn fMobileColumn = new DataColumn();
DataColumn fMobileColumnSTC = new DataColumn();
DataColumn fMobileColumnMobilyZain = new DataColumn();
DataColumn fMobileColumnInt = new DataColumn();
其他含义是与JavaScript中的代码等效的代码?
other meaning what is the code equivalent to it in JavaScript??
推荐答案
这篇关于JavaScript中的DataTable的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!