Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はradcontrols自分のプロジェクトで使用しています。rad テキスト ボックスの値の長さを取得するにはどうすればよいですか。を入力した場合12345、長さは のはずです5。
radcontrols
12345
5
このようなことを試してください
var textbox = document.getElementById("mytext"); var textlength = textbox.value.length;