每个定时器从开始到结束时间逐渐增大,这样就起到了点名器旋转慢慢变慢的效果。
实现外部导入,假如要通过input file表单形式选择文件,可以通过这种方式读取数据<form id="form">
<!-- 选择本地文本 -->
<input type="file" name="file" onchange="selectFile()" />
</form>
<script>
function selectFile() {
let formData = new FormData(document.getElementById('form'))
let reader = new FileReader()
reader.readAsText(formData.get('file'))
reader.onload = function() {
let text = this.result // 读到的文本
// 假如文本是 张三,李四,王五 格式,切割为数组
console.log(text.split(",")) // ["张三", "李四", "王五"]
}
}
</script>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)