如何在网页上用Javascript替换HMTL代码?
我的网页代码里有一句<inputonclick="returncheck2();"/>我想添加一个按钮,点击该按钮之后,更改代码为的<inputoncl...
我的网页代码里有一句<input onclick="return check2();" />我想添加一个按钮,点击该按钮之后,更改代码为的<input onclick="return check1();" />请问代码该怎么写呢?需要使用Javascript
展开
2个回答
展开全部
<html>
<head>
<title>noname</title>
<meta http-equiv='content-Type' content='text/html;charset=utf-8'>
</head>
<script>
function check1(){
alert('check1');
}
function check2(){
alert('check2');
}
function change(){
var node=document.getElementsByTagName('input')[0];
node.onclick=check1;
}
</script>
<body>
<input onclick="return check2();" />
<button onclick='change()'>click me</button>
</body>
</html>
<head>
<title>noname</title>
<meta http-equiv='content-Type' content='text/html;charset=utf-8'>
</head>
<script>
function check1(){
alert('check1');
}
function check2(){
alert('check2');
}
function change(){
var node=document.getElementsByTagName('input')[0];
node.onclick=check1;
}
</script>
<body>
<input onclick="return check2();" />
<button onclick='change()'>click me</button>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询