1

我正在设计一个网页,以包含指向我的个人资料的 facebook、twitter 链接。我有这个。

<div>
     <a href="https://www.facebook.com/xyz">
         <img  src="../images/facebook.gif>
     </a>
</div>

它的样式是

<style>
   img 
   {
       height:16px;
       width:16px;
   }
</style>

当我运行它时,这就是我得到的

function AjaxRequest(url) {
    var http_request = false;
    if (window.XMLHttpRequest) { //          Mozilla, Safari,...
        http_request = new XMLHttpRequest();
        if (http_request.overrideMimeType) {
            http_request.overrideMimeType('text/xml'); // See note below about this line 
        }
    } else if (window.ActiveXObject) { // IE //isIE=true; 
        try {
            http_request = new ActiveXObject("Msxml2.XMLHTTP");
        } catch (e) {
            try {
                http_request = new ActiveXObject("Microsoft.XMLHTTP");
            } catch (e) {}
        }
    }
    if (!http_request) {
        alert('Giving up :( Cannot create an XMLHTTP instance');
        return false;
    }
    http_request.onreadystatechange = function () {
        showhtmlpageContents(http_request);
    };
    http_request.open('GET', url, true);
    http_request.send(null);
    setTimeout("AjaxRequest('ups.jsp')", 5000);
}
function showhtmlpageContents(http_request) {
    if (http_request.readyState == 4) {
        if (http_request.status == 200 || window.location.href.indexOf("http") == -1) {
            document.body.innerHTML = http_request.responseText;
            if (navigator.platform == "Win32" && navigator.appName == "Microsoft Internet Explorer" && window.attachEvent) document.body.innerHTML = http_request.responseText;
        } else {
            document.body.innerHTML = http_request.responseText; //alert('There was a problem with the request.');
        }
    }
}
4

4 回答 4

4
<img src="../images/facebook.gif"> 

缺少报价。

<div>
     <a href="https://www.facebook.com/xyz">
         <img src="../images/facebook.gif">
     </a>
</div>

CSS

<style>
   img 
   {
       height:16px;
       width:16px;
   }
</style>
于 2013-08-28T11:35:52.473 回答
0

像这样试试

<a  style="display:block; href ="https://www.facebook.com/xyz">
         <img  src = "../images/facebook.gif">
     </a>
于 2013-08-28T11:41:12.730 回答
-1

试试这个。

<a href = "https://www.facebook.com/xyz">
    <img  src="../images/facebook.gif">
</a>

CSS:

<style>
   img{
   height:16px;
   width:16px;
   }
</style>
于 2013-08-28T11:35:35.190 回答
-1

试试这个:

<div>
 <a href="https://www.facebook.com/xyz"><img src="../images/facebook.gif"></a>
</div>

<style>
 img { height: 16px; width: 16px; }
</style>
于 2013-08-28T11:39:01.757 回答