所以我試圖創建一個頁面,用戶可以在其中寫入兩列或更多列。如何自定義textareas,使用戶能夠像MS字詞列一樣寫入
我希望它像一個可編輯的報紙文章與一些專欄。一旦第一列填滿所有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
}
});
我被困在這一點不知道如何繼續或如果我在正確的軌道上?
也許考慮延長[這個庫(http://welcome.totheinter.net/columnizer-jquery-plugin/) – haxxxton