+ -
当前位置:首页 → 问答吧 → Listcell里资料的超连结问题

Listcell里资料的超连结问题

时间:2011-02-08

来源:互联网

各位好, 我想请问一个问题, 以下为简易类似的Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<listbox id="listbox" width="250px"> <listhead sizable="true"> <listheader label="Name" sort="auto"/> <listheader label="ID" sort="auto"/> </listhead> <listitem> <listcell label="Mary"/> <listcell label="001"/> </listitem> <listitem> <listcell label="Candy"/> <listcell label="002, 003"/> </listitem> </listbox> 

假如我要在ID的资料列做超连结来取得每个人的资料,
例如Mary的001做1个超连结, Candyd 002和003各别做连结, 但现在却出现一个问题,
像Candy的资料需要2个超连结, 却是在同一个listcell里, 那我是要怎么处理这种资料呢

作者: qpqpqpqpqp0955   发布时间: 2011-02-08

it's really simple and easy.

1
2
3
  <listcell > <a>hello</a><a>hello2</a> </listcell>

作者: Tony1223   发布时间: 2011-02-09