値が挿入された入力ボックス(すべての整数)があります。私は彼らがこの二つの写真のように示すことにしたい。入力値の外側をクリックした後に入力値を追加します
1:
2:
$(document).ready(function() {
$("input").each(function() {
$(this).blur(function() {
var len = $(this).val().length;
});
});
});
.ndInbox {
background-color: white;
width: 390px;
height: 42px;
box-shadow: 0 2px 2px 0 #C2C2C2;
border: none;
outline: none;
font-size: 18px;
margin-bottom: 10px;
font-family: 'PT Sans', sans-serif;
padding-left: 10px;
}
.ndLabel {
color: #999;
font-size: 17px;
font-family: 'PT Sans', sans-serif;
}
<table>
<tr>
<td class="ndLabel" style="position: relative; width: 470px; top:-4px" id="avPurchase03">Average, €:</td>
<td colspan="2">
<input id="lpcfIn02Id" class="ndInbox" type="text" value="" />
</td>
</tr>
<tr>
<td class="ndLabel" style="position: relative; width: 470px; top:-4px" id="avNumber03">Budget, €:</td>
<td colspan="2">
<input id="lpcfIn03Id" class="ndInbox" type="text" value="" />
</td>
</tr>
</table>
私はblur
を使用して不完全なjQuery
の実装を書いていますが、目的の機能が得られませんでした。上記の写真に示されている私の要件は有効ですか?
ありがとうございます。
UPDATE: 私も次のフィールドにいる場合、ユーザータブを意味し、入力ボックスの外側をクリックして。
あなたは私たちすべてが、文字列操作であなたの試みを示してきました。それは問題なのですよね? – isherwood