gpt4 book ai didi

javascript - 我需要一个技巧来模拟标签上的插入符号

转载 作者:行者123 更新时间:2023-11-28 07:23:43 25 4
gpt4 key购买 nike

实际上,我使用的是绑定(bind)到标签的自定义数字键盘(使用 AngularJS)。使用此键盘,我可以通过箭头键(删除/修改/插入字符)从一个字符切换到另一个字符。

现在,我需要一个“技巧”来显示哪个字符被聚焦(一种插入符号或在聚焦字符下划线的东西)。

最佳答案

你可以利用 :focus 伪状态(我刚刚设置了背景颜色,你可以设置文本装饰但是 :before 文本等)

[role="button"]:focus {
background-color: red;
}

使用 HTML

<a href="#" role="button">
A
</a>
<a href="#" role="button">
B
</a>

	[role="button"]:focus {
background-color: red;
}
	<a href="#" role="button">
A
</a>
<a href="#" role="button">
B
</a>

关于javascript - 我需要一个技巧来模拟标签上的插入符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31936251/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com