如何在网页上用Javascript替换HMTL代码?
发布网友
发布时间:2022-05-16 22:08
我来回答
共3个回答
热心网友
时间:2022-05-16 23:37
<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>
热心网友
时间:2022-05-17 00:55
想要达到这个效果必须借用服务器端的力量 使用ajax 才能办的到~
单靠html和javascript做不到