-1

为什么我会出现换行符?我使用以下内容: White-space: nowrap; 但是当我填写跨度时,会出现换行符。这是什么原因造成的?

function insertLinkHoverImage(datei,datei2,verlinkung) 
        {
            var doc = document.getElementById("frame").contentWindow.document;

            var range = doc.getSelection().getRangeAt(0);
            var nnode = doc.createElement("span");
            var width = 0;
            var height = 0;

            var image = doc.createElement("img");
            image.src = "http://www.galliano.cc/Test_seite/cms/uploads/"+datei;         
            //Wenn Bild hochgeladen wurde
            image.onload = function() {
                document.getElementById("imgwidth").value = image.width;
                document.getElementById("imgheight").value = image.height;


                var alink = doc.createElement("a");
                var classDatei2 = "";

                alink.href = verlinkung;
                classDatei2 = datei.replace(".","-");

                nnode.setAttribute("style","white-space: nowrap; background-image:url(http://www.galliano.cc/Test_seite/cms/uploads/"+datei+"); width:"+document.getElementById("imgwidth").value+"px; height: "+document.getElementById("imgheight").value+"px; display: block; background-repeat: no-repeat;");               

                alink.appendChild(nnode);
                range.insertNode(alink);
            }

        }
4

1 回答 1

2

如果你查看你的 JavaScript,你有:

var nnode = doc.createElement("span");

然后你有:

nnode.setAttribute("style","white-space: nowrap; 
background-image:url(...);     
width:"+document.getElementById("imgwidth").value+"px; 
height: "+document.getElementById("imgheight").value+"px; 
display: block; background-repeat: no-repeat;"); 

所以span默认情况下,它是一个内联元素,但是你display: block在你的内联样式中指定,这使它成为一个块级元素,这会给你你的换行符。

尝试使用display: inline-block.

于 2015-04-14T21:02:54.777 回答