📌  相关文章
📜  如何通过按钮在最近使用的文本框中单击光标插入文本? javascript代码示例

📅  最后修改于: 2022-03-11 15:03:23.403000             🧑  作者: Mango

代码示例1
let currentInput = $('#text1');
$(document).on('focus', 'textarea', function() {
  currentInput = $(this);
})