我有一个Javascript代码,可以打开一个包含表格的弹出窗口。问题是该表包含太多行要显示在屏幕区域上。在IE和Chrome上我有一个向上和向下移动的滚动条,但在Firefox上我没有。 这是javascript代码:
function openWindowInsertResp() {
.............
dropDownValueA + "&subactivityID=" + dropDownValueS, "PartialTask", "status = 1,height = auto,width = 900,top = 100,left=250,resizable = 1");
.............
}
这是HTML:
<table style="border:none; width:100%;">
<tr>
<th style="text-align:center;">
No.</th>
<th style="text-align:center;">Description</th></tr>
@{
int i=1;
foreach (Project.Domain.Entities.Labor_JobDesc cr in contracts)
{
<tr style="border:none">
<td style="text-align:center; width:2%;">@i</td>
<td style="text-align:center;">
<textarea cols="auto"; rows="auto"; style="width:100%;"; readonly="readonly"> @cr.Res</textarea>
</td>
</tr>
i++;
}
}
</table>
在Firefox上有滚动条我需要做什么?有任何想法吗? 提前谢谢。
答案 0 :(得分:2)
尝试将'scrollbars = 1'添加到window.open选项:
window.open(url, name, "status = 1, ... ,resizable = 1, scrollbars=1");
答案 1 :(得分:2)
使用
window.open(adress, '....other params..., scrollbars = yes')