首页 > 代码库 > 点击按钮 变换文字

点击按钮 变换文字

<HTML>
<head>
<title>变换网页文字</title>
<script>
function clicke(){
document.getElementById("111").innerHTML="58同城";
}
</script>
</head>
<body>
<p id="111">这是一个神奇的网站</p>
<table>
<tr>
<td><input type="button" onClick="clicke()" value="http://www.mamicode.com/who"/></td>
</tr>
</table>
</body>
</HTML>