美好的一天。我有一些問題。 我已經有了輸入,我寫了一些信息。點後加空格
例子:
<div class="wizard wizardstep1" ng-controller='someCtrl'>
<p class="wizardtitle">Put you Theme</p>
<input id="taskTheme" required type="text" placeholder="Put you Theme" ng-model="taskThemeWizardInputValue" ng-change="checkThemeWizardInputValue()">
</div>
而且我有我的控制器。
例子:
$scope.checkThemeWizardInputValue = function() {
if ($scope.taskThemeWizardInputValue === undefined) {
$scope.taskThemeWizardInputValue = "";
console.log($scope.taskThemeWizardInputValue);
console.log($scope.taskThemeWizardInputValue.length);
} else {
var strt = $scope.taskThemeWizardInputValue.split('.');
for (var i = 0 ; i < strt.length; i++) {
strt[i] = strt[i].charAt(0).toUpperCase() + strt[i].substr(1);
}
$scope.taskThemeWizardInputValue = strt.join('.');
console.log($scope.taskThemeWizardInputValue);
console.log(strt);
}
}
我怎麼能點後添加空間?誰知道?
Here is link to jsfiddle with my example.
在這行你想改變其他每個分裂串實現的呢? –
當加入我的答案。 –
所以你想這樣:美國廣播公司。業。比希? –