AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
一定要记住的是,js的代码循环只是注册事件,并没有调用,只有当你触发事件的时候才进行操作. ``` <body> <input type="text"> <input type="text"> <input type="text"> <input type="text"> <input type="text"> <input type="text"> <input type="text"> <input type="button" value="提交"> <script> var inputs = document.getElementsByTagName('input'); for (let i = 0; i < inputs.length; i++) { var input = inputs[i]; if (input.type !== 'text') { continue; } input.onfocus = function () { this.style.backgroundColor = 'red'; } input.onblur = function () { this.style.backgroundColor = '#fff'; } } </script> ```