jQuery - 无需输入元素就地编辑。是否可以?

发布于 2024-10-01 17:29:33 字数 152 浏览 3 评论 0原文

jQuery 确实很容易创建一个漂亮的“就地编辑”效果,但是,尽管它很有效,但它总是使用一些输入元素。

这让我很烦恼,因为当元素替换原始文本时它会扭曲布局

有人知道避免这种烦恼的技巧吗?

jQuery is really easy for creating a nice 'edit in place' effect, but, despite its effectiveness, it always uses some input element.

It bugs me, as it distorts the layout, the moment the element replaces the original text.

Does anyone know a technique to circumvent this annoyance?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

阳光①夏 2024-10-08 17:29:33

是的。创建 CSS 规则来覆盖所有输入字段的烦恼并强制其以与原始元素匹配的方式呈现。

.dynInput{
border:none;
font-size:inherit;
font-weight:inherit;
background-color:inherit;
}

yes. create CSS rules that override all the input field annoyances and force it to render in a way that matches the original element.

.dynInput{
border:none;
font-size:inherit;
font-weight:inherit;
background-color:inherit;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文