87,972
社区成员
发帖
与我相关
我的任务
分享
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>jQuery</title>
</head>
<body>
<input id="btn1" type="button" value="点我试试" onclick="bTxt()">
<input id="btn2" type="text" value="1234">
<script>
// window.onload=function(){
var oDiv2=document.getElementById('btn2');
function bTxt(){
oDiv2.value='hehehaha';
}
// }
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>jQuery</title>
<script>
// window.onload=function(){
function bTxt(){
var oDiv2=document.getElementById('btn2');
oDiv2.value='hehehaha';
}
// }
</script>
</head>
<body>
<input id="btn1" type="button" value="点我试试" onclick="bTxt()">
<input id="btn2" type="text" value="1234">
</body>
</html>