<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>My First Script</title>
<script type="text/javascript">
function test() {
var temp = document.getElementById('input_text');
temp.value = '哈哈';
}
</script>
</head>
<body>
<form>
<label>输入</label><input id="input_text" type="text" value="默认值" />
<input type="button" value="设置为'哈哈'" onclick="test();" />
</form>
</body>
</html>JavaScript练习题目(1)按钮改变文本域值
最新推荐文章于 2020-01-11 10:54:58 发布
1439

被折叠的 条评论
为什么被折叠?



