2
我發現,在接受的答案here此代碼... 它通過點擊一個按鈕加載一個iframe到一個特定的區域 ...如何IFRAME添加到一個div使用jQuery
<a href="#" onclick="setIframe(this,'http://www.stackoverflow.co.uk')" >Set the Iframe up</a>
function setIframe(element,location){
var theIframe = document.createElement("iframe");
theIframe.src = location;
element.appendChild(theIframe);
}
怎麼辦我改變這個,這樣它允許我設置高度寬度和滾動樣式?
what if我不希望或「不應該」放入一個iframe,但我希望該div切換隱藏和基於兩個不同的按鈕顯示...我問了一個單獨的問題在stackoverflow ...將很快發佈鏈接 –
thnx爲此......這裏是鏈接。有兩個按鈕。一個提交表單,然後另一個表單顯示。 http://stackoverflow.com/questions/14651706/how-to-hide-form-on-submit-and-reveal-it-on-a-button-click –