2013-07-09 35 views
0

我需要使用有序列表文本实现文本区域。我已经完成但行号必须是递增只有在回车键被按下。textarea内部的排序列表(行号)

这里是我的努力:Js Fiddle

代码

var lineObjOffsetTop = 2; 
createTextAreaWithLines('codeTextarea'); 
function createTextAreaWithLines(id) 
{ 
var el = document.createElement('DIV'); 
var ta = document.getElementById(id); 
ta.parentNode.insertBefore(el,ta); 
el.appendChild(ta); 

el.className='textAreaWithLines'; 
el.style.width = (ta.offsetWidth + 30) + 'px'; 
ta.style.position = 'absolute'; 
ta.style.left = '30px'; 
el.style.height = (ta.offsetHeight + 2) + 'px'; 
el.style.overflow='hidden'; 
el.style.position = 'relative'; 
el.style.width = (ta.offsetWidth + 30) + 'px'; 
var lineObj = document.createElement('DIV'); 
lineObj.style.position = 'absolute'; 
lineObj.style.top = lineObjOffsetTop + 'px'; 
lineObj.style.left = '0px'; 
lineObj.style.width = '27px'; 
el.insertBefore(lineObj,ta); 
lineObj.style.textAlign = 'right'; 
lineObj.className='lineObj'; 
var string = ''; 
for(var no=1;no<200;no++){ 
if(string.length>0)string = string + '<br>'; 
string = string + no; 
} 

ta.onkeydown = function() { positionLineObj(lineObj,ta); }; 
ta.onmousedown = function() { positionLineObj(lineObj,ta); }; 
ta.onscroll = function() { positionLineObj(lineObj,ta); }; 
ta.onblur = function() { positionLineObj(lineObj,ta); }; 
ta.onfocus = function() { positionLineObj(lineObj,ta); }; 
ta.onmouseover = function() { positionLineObj(lineObj,ta); }; 
lineObj.innerHTML = string; 
} 

function positionLineObj(obj,ta) 
{ 
obj.style.top = (ta.scrollTop * -1 + lineObjOffsetTop) + 'px'; 
} 
+0

可能不会重新发明轮子并使用像YUI这样强大的功能:http://yuilibrary.com/yui/docs/editor/ –

+0

我编辑了我的问题。请考虑重新开放。 – Janty

+0

我已经做了一个rnd并再次发布需求作为 – Janty

回答

2

而是有了这样的文本区域的工作,你可能想使用CONTENTEDITABLE标签。

下面是一个可能看起来像什么的例子。

HTML:

<div class="orderedList" contenteditable="true"> 
</div> 

JQuery的:

var yourContent = "<ol><li>Go to home.</li><li>I need to installl window 8 and sql server 2012 by tommorow so that i can work with my project well and Need to clarify.</li><li>Test application.</li></ol>"; 

$('.orderedList').html(yourContent); 

然后你可以使用一些JQuery的权谋与形式提交。

希望这会有所帮助!

+0

谢谢,但我需要在textarea中输入文本时,并按下输入时应自动添加新的行号。我已经尝试过,但我不能为paragrah类型做。 – Janty

相关问题