宗策

导航

2020年4月30日 #

JavaScript简易猜数字

摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> <script type="text/javascript"> //得到1-10的随机数 var x = parseInt(Ma 阅读全文

posted @ 2020-04-30 16:19 宗策 阅读(337) 评论(0) 推荐(0) 编辑

JavaScript实现简易计算器

摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> <script type="text/javascript"> function fn(x){ //得到文本框 和 div的元素 阅读全文

posted @ 2020-04-30 15:49 宗策 阅读(431) 评论(0) 推荐(0) 编辑

JavaScript-如何获取页面元素对象,元素id

摘要: 1. 通过元素id获取页面元素对象 var d = document.getElementById("id");2. 获取和修改元素的文本内容 获取:d.innerText 修改: d.innerText="xxx"; 3. 获取和修改文本框的内容 获取: i.value 修改: i.value=" 阅读全文

posted @ 2020-04-30 15:00 宗策 阅读(3032) 评论(0) 推荐(0) 编辑