强制文本输入为大写
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了强制文本输入为大写相关的知识,希望对你有一定的参考价值。
/* Use this function to be dispatch from an Event.CHANGE on a textfield */ private function _handleChangeText ($evt:Event):void { var $curInput:String = evt.target.text; evt.target.text = $curInput.toLocaleUpperCase(); }
以上是关于强制文本输入为大写的主要内容,如果未能解决你的问题,请参考以下文章