我试图将这个html i-frame设置在我身体页面的某个位置,但我无法弄清楚要使用的代码或方法?
<div style="overflow: hidden; width: 333px; height: 156px; position src="h: relative;" id="i_div"><iframe name="i_frame"http://url.com/click.php?aff=2057&camp=2056&crt=6077&" style="border: 0pt none ; left: -585px; top: -273px; positionabsolute; width: 1024px; height: 576px;" scrolling="no"></iframe></div>
答案 0 :(得分:1)
看起来像是一个拖放式剪切和粘贴错误。清除了该代码中的一些错误:
<div style="overflow: hidden; width: 333px; height: 156px; position: relative;" id="i_div">
<iframe name="i_frame"
src="http://url.com/click.php?aff=2057&camp=2056&crt=6077&"
style="border: 0pt none; left: -585px; top: -273px; position: absolute; width: 1024px; height: 576px;"
scrolling="no">
</iframe>
</div>