Js中字符转换大小写

字符转换大写:

<script type="text/javascript">

    var str="Hello world!";

    document.write(str.toUpperCase());

</script>

 

字符转换小写:

<script type="text/javascript">

    var str="Hello world!";

    document.write(str.toLowCase());

</script>

posted on 2012-06-09 18:10  专注2018  阅读(292)  评论(0编辑  收藏  举报