我已将EtherCalc电子表格与我的redmine相关联。我希望以只读模式制作这些电子表格。因此,我使用只读iframe
标记了我的电子表格div
。但是这个解决方案不起作用:
<div id="my_sheet">
<iframe src="<%= "http://X.X.X.X:8000/" + @issue.spreedsheet.to_s %>" width="1000" height="500" style="display: none" id="sheet">frame content.</iframe>
</div>
$(document).ready(function() {
$("#my_sheet").prop( "readonly", "true" );
})
我该如何解决这个问题?
以下是我的观点:
答案 0 :(得分:1)
只需使用下面的CSS。
#my_sheet:after{
position:absolute;
content:'';
top:0;
right:0;
bottom:0;
left:0;
z-index:999;
}
#my_sheet{
position:relative;
}