- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我试图创建一个页面,用户可以在其中写入两列或更多列。
我希望它像一篇可编辑的报纸文章,带有一些专栏。一旦第一列填满所有 14 行,我希望它自动将多余的单词移动到另一列。
我也需要它来进行粘贴,所以我认为当行数超过 14 时我不能只传输最后一个单词。
顺便说一下,我使用这段代码来计算行数
$(window).on("change paste keyup",function(){
var taLineHeight = 30; // This should match the line-height in the CSS
var taHeight = article_content.scrollHeight; // Get the scroll height of the textarea
article_content.style.height = taHeight; // This line is optional, I included it so you can more easily count the lines in an expanded textarea
var numberOfLines = Math.floor(taHeight/taLineHeight);
if (numberOfLines > 14){
//Do something
}
});
我现在陷入困境,不知道如何继续,或者我是否走在正确的轨道上?
最佳答案
您可以使用 CSS3 和可编辑的 DIV:
#col {
-moz-column-count: 2;
-webkit-column-count: 2;
column-count: 2;
}
<div id="col" contenteditable="true">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum</div>
fiddle :https://jsfiddle.net/qy7jxd36/
关于“14行” - 您需要使用DIV高度,请参阅这个 fiddle :https://jsfiddle.net/qy7jxd36/1/
关于javascript - 如何自定义文本区域以使用户能够像 MS Word 列一样书写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42089580/
我正在开发 GPA 计算器,而且我是 C 语言新手。我在 Ubuntu 12 中使用 gvim 编写此代码,并在终端中使用 gcc 进行编译。 这是我到目前为止的代码。我还想包含一种检查方法,以确保用
我正在使用tinymce 编辑网络应用程序中的某些字段。我需要一个带有一些规范的 html 结果(编辑后)。 例如:当我按 Entertinymce 时,创建一个新段落(没关系,我知道可以更改此行为,
我正在尝试在EmguCV(OpenCV C#包装器)图像上绘制多于一行的字符串。但它表明EmguCV无法识别新行“\ r \ n”字符。 如何实现呢?另外,如何获取文本高度,以便可以手动设置下一个字符
我有一个 richTextBox,一个人将在其中阅读患者的医疗记录。 我添加了一个按钮,用于将今天的日期(以 DD/MM/YYYY 格式)添加到 richTextBox 中。当有人需要更新病人的记录时
我是一名优秀的程序员,十分优秀!