📌  相关文章
📜  javascript 添加文本到 textarea 覆盖 - Javascript 代码示例

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

代码示例1
var $log = $('#myTextArea');

function log(text) { //Remember to clear your text variable each iteration
    $log.empty();
    $log.append(text);
}

// Whichever function during which you want to print to the text area:
//...
log("Hello world!");
//...