回复 3楼1594202459的帖子
这里面有2个问题。
1.你的.js添加不正确。
2.getCell(0,0).text(10); sheet.setText(1,0,10).
text是string类型的值,必须传string进去。
根据你最近提问的问题,看的出你对学习该产品很有热情。
我们对你学习SpreadJs产品有几点建议:
1.学习基础知识:比如HTML,JQuery的相关知识。W3school网站上有免费的学习资源。地址:http://www.w3school.com.cn/
2.学习产品:主要通过产品文档和Sample。我们的产品文档写的还是很详细的,文档从基础知识讲起,GettingStarted章节就是最基础的知识。对于不清楚的还可以通过文档里的Search搜索关键字进行查询相关资料。
你的代码重写了,请参考:
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title></title>
- <!--jQuery References-->
- <script src="http://code.jquery.com/jquery-1.9.1.min.js" type="text/javascript"></script>
- <!--SpreadJS Widgets JavaScript-->
- <script src="http://cdn.wijmo.com/spreadjs/jquery.wijmo.wijspread.all.3.20143.14.min.js" type="text/javascript"></script>
- <!--SpreadJS Widgets CSS-->
- <link href="http://cdn.wijmo.com/spreadjs/jquery.wijmo.wijspread.3.20143.14.css" rel="stylesheet" type="text/css" />
- <script>
- $(document).ready(function () {
- $("#ss").wijspread();
- var sheet = $("#ss").wijspread("spread").getActiveSheet();
- sheet.getCell(0, 0).formatter("0.00_);(0.00)");
- sheet.getCell(1, 0).formatter("0.00_);(0.00)");
- sheet.getCell(0, 1).formatter("0.00_);(0.00)");
- sheet.getCell(1, 1).formatter("0.00_);(0.00)");
- // Set values to Text property
- sheet.getCell(0, 0).text("10");
- //Set values by calling SetText method
- sheet.setText(1, 0, "10");
- //Set values to Value property.
- sheet.getCell(0, 1).value(10);
- //Set values by calling SetValue method.
- sheet.setValue(1, 1, 10);
- });
- </script>
- </head>
- <body>
- <div id="ss"></div>
- </body>
- </html>
复制代码 |