エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
var myApp = angular.module('myApp',[]); myApp.controller('SampleCtrl', ['$scope', function($scope... var myApp = angular.module('myApp',[]); myApp.controller('SampleCtrl', ['$scope', function($scope) { $scope.hoge= ""; // テキストボックスに文字が入力されたらイベント発火 $scope.strReplace = function () { var str = $scope.hoge; // 1文字ずつ変換されていくので、正規表現のグローバルマッチ(g)は不要 if (str.match(/[^0-9a-zA-Z]/)) { str = str.replace(/[A-Za-z0-9]/, function(s) { return String.fromCharCode(s.charCodeAt(0) - 0xFEE0); }); $scope.hoge= str; } }