1.获取腾讯视频代码
`(支持安卓iphone播放的通用地址,不是浏览器地址)`
![](https://box.kancloud.cn/2016-08-10_57aa8fbd2f839.jpg)
2.提取真实的地址
`<iframe frameborder="0" width="640" height="498" src="http://v.qq.com/iframe/player.html?vid=d0316qasbfn&tiny=0&auto=0" allowfullscreen></iframe>`
其中处于 src="——---"中的地址就是真实地址。
如下
`http://v.qq.com/iframe/player.html?vid=d0316qasbfn&tiny=0&auto=0`
3.把刚才的真实地址替换到如下代码的*****中
~~~
<table width="100%" height="100%" border="1" style="width: 100%; height: 100%;" cellspacing="0" cellpadding="0">
<tbody>
<tr class="firstRow">
<td style="width:100%; height:100%">
<iframe src="*****" style="width:100%; height:100%;overflow:scroll" frameborder="no" scrolling="no"></iframe>
</td>
</tr>
</tbody>
</table>
~~~
即变成
~~~
<table width="100%" height="100%" border="1" style="width: 100%; height: 100%;" cellspacing="0" cellpadding="0">
<tbody>
<tr class="firstRow">
<td style="width:100%; height:100%">
<iframe src="http://v.qq.com/iframe/player.html?vid=d0316qasbfn&tiny=0&auto=0" style="width:100%; height:100%;overflow:scroll" frameborder="no" scrolling="no"></iframe>
</td>
</tr>
</tbody>
</table>
~~~
4.把上述的代码插入到图文详情中,选择html代码模式,插入空白处
![](https://box.kancloud.cn/2016-08-10_57aa8fbd5185f.jpg)