问答详情
源自:9-6 setAttribute()方法

为什么web前端技术这几个字与上一行之间空这么多啊?

http://img.mukewang.com/5576b07f00014d5c04120472.jpg为什么web前端技术这几个字与上一行之间空这么多啊?求指点,谢谢各位

提问者:milk2468 2015-06-09 17:23

个回答

  • 伊兮尘昔
    2015-06-09 17:32:41
    已采纳

    你把当前元素的margin和padding设置为0就看不见间空了

  • 发霉的饭盒
    2016-02-15 11:12:01


      var Lists=document.getElementsByTagName("li");
      for (var i=0; i<Lists.length;i++)
      {
        text = Lists[i].getAttribute("title");
        document.write(text +"<br />");
        if(text=="")
        {
        Lists[i].setAttribute("title", "WEB前端技术");
        document.write(Lists[i].getAttribute("title")+"<br />");
        }
      }

    因为在它判断title是否为""且进行替换并输出前 先要执行一次document.write(text +"<br />")