点击清除内容
作者:互联网
<input type="text" value="默认的文字" id="txt"/>
<input type="button" value="清空" id="btn"/>**
window.onload = function(){
var oBtn = document.getElementById("btn");
var oTxt = document.getElementById("txt");
//给按钮添加事件驱动函数
oBtn.onclick = function(){
//要将文本中的内容清空
//oTxt.value = "";
//输出文本中的内容
alert(oTxt.value);
//修改文本中的内容
oTxt.value ="修改后的内容";
}
}
标签:document,清除,value,点击,内容,oTxt,var,文本 来源: https://blog.csdn.net/qq_38051208/article/details/99883128