duanqiang5722 2014-10-29 22:38
浏览 177
已采纳

使用JavaScript将每行的首字母大写

I'd like to know how I could capitalize the first letter of a row in JavaScript like in this PHP code :

<?php

$textParts = explode("
", $text);
foreach ($textParts as $key => $value) {
   $textParts[$key] = ucfirst($value);
}

$text = implode("
", $textParts);

$text="namjaga da geureochi mwo narago dareugetni
ni mameul da gajyeodo naragabeorigo maneun
namjaga da geureochi mwo"

?>

<p>
<?php echo $text; ?>
</p>

In JS, I get the text into the "Roman" DIV after a tranformation :

<div id="Roman"> </div>

<script>

<?php include("../../tools/js/romantool.js"); ?>
function affichar() {
  document.getElementById('Roman').innerHTML = latin_to_roman(
    document.getElementById('Parol').innerHTML
  );
}
affichar();

</script>

Does anyone know how I should proceed to do as in the previous PHP example ? Thank you !

  • 写回答

4条回答 默认 最新

  • douci1541 2014-10-30 00:04
    关注

    In fact I would go right in between the two suggested answers so far. I would use javascript to replace the line breaks with a tag that will add structure around text e.g.

    var str = document.getElementById('Parol').innerHTML;
    str = '<span>' + str.replace(/(?:
    ||
    )/g, '</span><span>') + '<span>';
    document.getElementById('Roman').innerHTML = str;
    

    And than style it in whichever way you want using CSS, your case would be

       span {
            display: block;
        }
    
        span:first-letter {
            text-transform: uppercase;
        }
    

    Here's a fiddle

    http://jsfiddle.net/58qkwezk/1/

    Adding structure to your text will help you manipulate it much easier

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器