最新回答 / VictoryLang
提示为空,说明你没有获取到正确的DOM元素,用console.log检查下。window.onload=function(){ var menu = document.getElementById('menu'); var item = menu.getElementsByTagName('div'); for(var i = 0; i < item.length; i++) { item[i].onclick = function() { ...
2020-03-24
最新回答 / 幕布斯1429361
<!doctype html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title> <style> *{margin:0; padding:0; list-style:none;} .wrap{height:170px; width:490px; margin:60px auto; ...
2019-10-20
最新回答 / qq_慕圣3038191
var ps=$('menu-ll').getElementsByTagName('p');//获取p跟ul的下标 //错误改成var ps = document.getElementsByTagName('p')var uls=$('menu-hh').getElementsByTagName('ul'); //错误改成var uls= document.getElementsByTagName('ul')还有这一段 if(sy>=ps.length){//做一个判断以至于不会一直加下去ps=0...
2019-07-26
最新回答 / 幕布斯1429361
<!doctype html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title> <style> *{margin:0; padding:0; list-style:none;} .wrap{height:170px; width:490px; margin:60px auto; ...
2019-07-23