我有一个显示在我的iFrame左下角的加载程序图像,但是,我试图在中心显示。您能否告诉我们如何在以下代码中添加样式:
var ShowLoader = function() {
document.getElementById("mainIframe").style.display = "none";
document.getElementById("documentIframe").src = "http://localhost:63902/images/loading.gif";
}
答案 0 :(得分:0)
使用以下代码居中对齐。
document.getElementById("documentIframe").style.textAlign = "center";
document.getElementById("documentIframe").style.margin = "0px auto";