JavaScript中的DataTable [英] DataTable in JavaScript

查看:39
本文介绍了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??

推荐答案

This DataTable (JavaScript) might help you .


这篇关于JavaScript中的DataTable的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆