这几天写页面时,发现有一个关于下拉框选择搜索然后回显的功能,这里分享一下个人的解决办法: 1.select样式 2.window.selectType = function(){ //获取相应的select对象 var types = document.getElementById("typeLis ...
分类:
其他好文 时间:
2020-06-28 19:02:18
阅读次数:
95
`<!doctype html> 拍照 拍照 --> !(function () { function takePhotos() { if (videoPlaying) { let canvas = document.getElementById('canvas'); canvas.width = ...
分类:
Web程序 时间:
2020-06-28 14:57:59
阅读次数:
59
一、定义一个长话短说的代替物:$(id)=return document.getElementById(id) 定义一个函数,函数名叫$。 接收一个参数id , 调用时返回id为此id的元素对象。 function $(id) { return document.getElementById(id) ...
分类:
Web程序 时间:
2020-06-25 17:23:24
阅读次数:
100
使用 window.alert() 写入警告框 使用 document.write() 写入 HTML 输出 使用 innerHTML 写入 HTML 元素 使用 console.log() 写入浏览器控制台 innerHTML要配合 document.getElementById(id) 方法使用 ...
分类:
Web程序 时间:
2020-06-25 09:51:59
阅读次数:
84
<script type="text/javascript">function checknum(){ var obj = document.getElementById("num"); var reg = new RegExp("^[0-9]*$"); if(!reg.test(obj.value ...
分类:
其他好文 时间:
2020-06-24 16:24:09
阅读次数:
40
DOM DOM:Document Object Model(文档对象模型) 访问节点 使用getElement系列方法访问指定节点 ? getElementById()、getElementsByName()、getElementsByTagName() 根据层次关系访问节点 节点属性 属性名称描述 ...
分类:
其他好文 时间:
2020-06-22 12:58:38
阅读次数:
47
某大学教学评估系统(控制台) document.getElementById("submit1").onclick = check window.document.StDaForm.zgpj.value = "无" for ( var i = 0; i < document.StDaForm.ele ...
分类:
其他好文 时间:
2020-06-20 21:13:28
阅读次数:
78
var t = document.getElementById("select1"); var selectValue=t.options[t.selectedIndex].value;//获取select的值 var t1 = document.getElementById("select2"); ...
分类:
Web程序 时间:
2020-06-19 11:57:31
阅读次数:
157
效果图: ##JS部分代码: <script> var input,containe; window.onload = function(){ input = document.getElementById('input'); container = document.getElementById( ...
分类:
Web程序 时间:
2020-06-18 21:46:56
阅读次数:
206
<!-- 定时刷新 start--> <script type="text/javascript"> var time=30; function delay() { if(time>0) { document.getElementById("reflash").innerHTML time+"秒后自 ...
分类:
其他好文 时间:
2020-06-18 13:07:33
阅读次数:
54