蔡我改變的寬度和高度上的iframe如何爲src鏈接?使用JavaScript代碼下面我能夠改變寬度和iframe的高度,但是當有IFRAME這樣變化iframe的寬度和高度,使用JavaScript
<iframe id="myFrame" src="http://domain.com/page.php?width=400&height=400" height="400" width="400"></iframe>
<button onclick="myFunction()">Change</button>
如何更改寬度和高度這裏page.php?width=400&height=400
?是否有可能使用JavaScript?
這裏是我的JavaScript代碼來改變IFRAME
<script>
function myFunction() {
document.getElementById("myFrame").height = "400";
document.getElementById("myFrame").width = "400";
}
</script>
當你調用這個函數? –
點擊@MayankPatel –
您必須取得src屬性並進行一些字符串操作,然後再次輸入src屬性。但是這樣做會重新加載iframe。 –