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.
接下来是问题:
textarea
font
selection
请注意,textarea 的文本是纯文本,其中没有HTML格式。
HTML
textarea 只会以页面指定的字体呈现,因此您可以通过执行以下操作使用 jQuery 获取字体:
var font = $("textarea").css("font-family");
但是,听起来您想知道文本最初的字体。不幸的是,这是不可能的,因为字体信息在粘贴到浏览器时会丢失。