2012-05-11 43 views

回答

0

您可以調用爲設置文本位置的iframe內顯示的頁面創建javascript函數。然後,你可以調用該函數從IFRAME

document.getElementById('myiframe').contentWindow.setTextToRightHandSide(); 

裏面的html外面看起來像這樣

<html> 
<head> 
    <title>inside html</title> 
    <script> 
     function setTextToRightHandSide() { 
      var div = document.getElementById('textBlock'); 

      div.style.position = "absolute"; 
      div.style.right = "0px"; 
     } 
    </script> 
</head> 

<body> 
    <div id="textBlock">some text here</div> 
</body> 
</html>