<script type="text/javascript">
var Lists=document.getElementsByTagName("li");
for (var i=0; i<Lists.length;i++)
{
var text=Lists[i].getAttribute("title")
document.write(text +"<br>");
if(text=="")
{
List[i].setAttribute("title","WEB前端技术");
document.write(Lists[i].getAttribute("title")+"<br>");
}
}
</script>
List[i].setAttribute("title","WEB前端技术");这一句的 Lists[i]缺个s
除此之外document.write(text +"<br>")最好写上分号
楼上正解
List[i].setAttribute("title","WEB前端技术"); //这行代码中List后面少个s,因为你其他的都是Lists