图像上的锚标签不起作用

时间:2013-08-28 11:33:51

标签: html css

我正在设计一个网页,其中包含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 个答案:

答案 0 :(得分: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>

答案 1 :(得分:0)

试试这个

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

答案 2 :(得分:-1)

试试这个。

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

的CSS:

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

答案 3 :(得分:-1)

试试这个:

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

<style>
 img { height: 16px; width: 16px; }
</style>
相关问题