1.獲取騰訊視頻代碼
`(支持安卓iphone播放的通用地址,不是瀏覽器地址)`

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代碼模式,插入空白處
