以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  取 pv  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=170579)

--  作者:qazlinle6
--  发布时间:2021/7/31 10:28:00
--  取 pv
<td class="round1">足金999.9‰</td>
<td class="round1">510</td>
<td class="round1">30</td>
<td class="round1">480</td>
</tr>


取 PV1  PV2  PV3


--  作者:有点蓝
--  发布时间:2021/7/31 10:43:00
--  
没看懂
--  作者:qazlinle6
--  发布时间:2021/7/31 10:51:00
--  
网址是http://127.0.0.1:32177/linle.html?pv1=510&pv2=30&pv3=480

网页里有个表让表的一行显示
<td class="round1">足金999.9‰</td>
<td class="round1">510</td>   510读取pv1
<td class="round1">30</td>    30读取pv2
<td class="round1">480</td>  480读取pv3
</tr>

--  作者:有点蓝
--  发布时间:2021/7/31 11:04:00
--  
表格是怎么生成的?贴出完整代码
--  作者:qazlinle6
--  发布时间:2021/7/31 11:12:00
--  

<head>
<meta charset="utf-8"> 
<title>菜鸟教程(runoob.com)</title>
<style>
table,td,th
{
border:4px solid black;
}
table
{
width:100%;
}
th
{
height:50px;

text-align: center;

color: #FFD700; 
}
td
{

height:30px;
text-align: center;
color: #FFD700; 
}

th.round1 {
  border: 2px solid LightGray;
  border-radius: 5px;
}

td.round1 {
  border: 2px solid LightGray;
  border-radius: 5px;
}

</style>
</head>

<body>
<table>
<tr>
<th class="round1">品名</th>
<th class="round1">挂牌价</th>
<th class="round1">优惠</th>
<th class="round1">优惠价</th>
</tr>
<tr>
<td class="round1">足金999‰</td>
<td class="round1">490</td>
<td class="round1">30</td>
<td class="round1">460</td>
</tr>
<tr>
<td class="round1">足金999.9‰</td>
<td class="round1">510</td>
<td class="round1">30</td>
<td class="round1">480</td>
</tr>

</table>
</body>

--  作者:有点蓝
--  发布时间:2021/7/31 11:33:00
--  
如果是静态文件,没有办法

参考这种使用代码生成网页:http://www.foxtable.com/mobilehelp/topics/0014.htm

比如:

sb.AppendLine("<td class=""round1"">" &e.getvalues("pv1")  & "</td>")

--  作者:qazlinle6
--  发布时间:2021/7/31 13:09:00
--  
<iframe width=100%; height=230 frameborder="0" src="https://v.qq.com/txp/iframe/player.html?vid=s05304whuae&autoplay=true" allowFullScreen="true"></iframe>


这个可以放进去不

--  作者:有点蓝
--  发布时间:2021/7/31 14:01:00
--  
这种没有办法