excel怎么让前三行一直显示?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了excel怎么让前三行一直显示?相关的知识,希望对你有一定的参考价值。

1、打开一个excel表格,现在需要设置将表头三行始终显示。

2、点击第四行(需要几行就点击它下面的那一行)。
3、单击冻结窗口右下角的下拉按钮,在下拉列表中选择冻结至第三行即可。
参考技术A

如果只需要前面两列固定的话,就选中第三列,然后点“冻结窗格”

如果需要行跟列都固定的话,选中行与列交叉的那个单元格再点冻结

无法选择表格前三行中的所有单选按钮

【中文标题】无法选择表格前三行中的所有单选按钮【英文标题】:Unable to select all radio buttons in first three rows of a table 【发布时间】:2014-08-27 23:33:10 【问题描述】:

我有一张表格,其中每一行都有大约 11 个单选框和一些其他属性。 我想让前 3 行的单选按钮不可编辑,并使用下面的代码。请说明为什么它不起作用。

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function()
$('tr:lt(2) input[type=radio]').prop('readOnly',true);
);
</script>

【问题讨论】:

你也可以发布 HTML 吗? Disabling radio buttons with jQuery 的可能重复项 【参考方案1】:

你需要使用 prop disabled 作为true:

$('tr:lt(2) input[type=radio]').prop('disabled',true);

【讨论】:

只读在单选按钮中不起作用。请参阅此答案以解决***.com/questions/1953017/…【参考方案2】:

以上代码均无效,请查看下面的示例 html 并提出建议。

<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function()
$('tr:lt(3)').find('input[type=radio]').prop('readonly',true);
);
</script>
</head>
<body>
<table border='1'>

<tr>
<td>Test1</td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
</tr>

<tr>
<td>Test2</td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
</tr>

<tr>
<td>Test3</td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
</tr>

<tr>
<td>Test4</td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
</tr>

<tr>
<td>Test5</td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
</tr>

<tr>
<td>Test6</td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
</tr>

</table>
</body>
</html>

【讨论】:

以上是关于excel怎么让前三行一直显示?的主要内容,如果未能解决你的问题,请参考以下文章

CSS显示两行或三行文字,然后多出的部分省略号代替

excel表格边框不显示的解决方法

WORD中如何让前两页不显示页码

做EXCEL表格时在一个单元格里想显示两行字怎么处理

怎么让android的activity跳转到下一个activity时让前一个activity销毁

请问我这个excel一直提示公式错误,怎么解决?