Javascript / Jquery解析excel到文本

时间:2011-07-02 08:25:09

标签: javascript jquery excel

我对javascript相当新,但我想创建一个jquery的javascript,它将通过所有 excel表中的记录逐行,并且每个记录在TEXT文件中解析单元信息在同一个

HTML风格 结构,就像下面的那个。

| Cell1| IMG path | IMGthumbpath | Cell4| Cell5| Cell6 | Cell7 |

xxx       xxx          xxx         xxx     xxx  xxx    xxx. 
...       ...          ...         ...     ...  ...    ...

xls中每条记录的文本文件结构:

<!-- Start of mark up  image. -->

<a href="../<content of IMG path cell>.jpg" class="Gallery" onClick="return xxx">

<[img] src="../<content of IMGthumbpath cell>.jpg" alt="<content of Cell1>" title="<content of Cell1>"/>

<span><content of Cell1> </span>

</a>

<div class="Gallery">
<h3><Content of Cell1></h3> <br />
<b>Desc1: <content of Cell4> <br /> 
<b>Desc2:&nbsp;</b> <content of Cell5> <br /> 
<b>Desc3:&nbsp;</b> <Content of Cell6> <br />
<b>Desc4:&nbsp;</b> <Content of Cell7> <br />
</div>

<!--End of mark up  image. -->

我如何做到这一点?

0 个答案:

没有答案