Javascript:在输入的特定偏移位置附加字符串
有没有办法在输入的特定偏移位置附加字符串?假设我们有以下输入: 偏移量:,字母 c 位于输入字符串值的第 3 个偏移量中。
+-------------+
123456789
+-------------+
xxxxxxx->偏移位置
假设我想在输入的第三个位置附加字符串“hi”,使其变为:
+------------+
嗨
+-------------+
123456789
我该怎么办?
谢谢。
Is there a way to append a string in a specific offset position on an input? Suppose we have the following input :
an offset : <input type="text" value="abcdef"/>
, the letter c is situated in the 3th offset of the input string value.
+-------------+
123456789
+-------------+
xxxxxxx->offset position
Let's say I want to append the string "hi" in the 3th poistion of the input so it become :
+-------------+
hi
+-------------+
123456789
How can I do that?
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以很容易地编写自己的函数来做到这一点。
You could very easily write your own function to do that.