gpt4 book ai didi

html - 为什么 right ctrl right shift 没有将文本右对齐?

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

When I press right ctrl, I want the right shift the text will align right.

When I press left ctrl left shift the text will align left.

It is not working.

<input type="text" />

最佳答案

你实际上可以在 jQuery 中做到这一点

尝试按键盘上的 ctrl + shift + right-arrow。查看代码片段中发生了什么。

$(document).on("keydown", function(event) {
if (event.ctrlKey && event.shiftKey && event.keyCode == 39) {
$("p").css({"text-align": "right"});
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<p>This is a paragraph</p>

关于html - 为什么 right ctrl right shift 没有将文本右对齐?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34425266/

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