Heim >Web-Frontend >js-Tutorial >将光标定位到textarea的某一行的javascript代码_表单特效

将光标定位到textarea的某一行的javascript代码_表单特效

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-05-16 19:14:551173Durchsuche
   
     
     
  <script> <BR> function goL(Line) <BR> { <BR> ta1.focus(); <BR> var v=ta1.value.split('\n'); <BR> ch=0; <BR> for(var i=0;i<Line-1;i++) <BR> ch+=v[i].length; <BR> var o=ta1.createTextRange(); <BR> o.move("character",ch); <BR> o.select(); <BR> } <BR> </script>

[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn