我在我的代码中使用ng-mask。
<input type="text" class="form-control datepicker_cal" datepicker-popup="MM/dd/yyyy" min-date="startDate" name="{{dobName}}" max-date="endDate" mask="99/99/9999" ng-model="newDate" is-open="opened" datepicker-options="dateOptions" on-open-focus="false" />
例如。文本框的值是&#34; 10/01/2015&#34;
当我删除第一个字母&#39; 1&#39;光标移动到文本框的末尾。
我可以知道为什么吗?
我不想在最后移动光标。
感谢。
答案 0 :(得分:0)
试试这个:
$RootDir="c:\temp\test"
$Users = Get-ChildItem $RootDir -Name
$FolderToDelete = "subcarpeta1"
foreach ($user in $Users){
$n = $n +1
write-host $n $user
#Remove-Item -path $rootdir\$user\$FolderToDelete -Force -Recurse
}