哪位大哥告诉我写个JS 我要把一个textArea 中的数据通过清空按钮清空

2025-05-24 11:40:11
推荐回答(1个)
回答1:

function ClearTextArea()
{
document.getElementById("id").value="";
}