牛腩中关村网站产品参数页的参数纠错的制作

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
    <title>产品纠错</title> 
    <style type="text/css"> 
        .param_td  
        {  
            line-height: 25px;  
        }  
        .param_td a  
        {  
            font-size: 12px;  
        }  
        .param_td a:link, .param_td a:visited  
        {  
            text-decoration: none;  
            color: #0368A8;  
        }  
        .param_td a:hover  
        {  
            text-decoration: underline;  
            color: #FF6600;  
        }  
    </style> 
 
    <script src="jquery.js" type="text/javascript"></script> 
 
    <script type="text/javascript"> 
        function show(obj_td) {  
            /*  
            鼠标移到td单元格中,首先先把当前页面中纠错的HTML标签去掉,  
            再把纠错的HTML标签加到当前单元格中  
            */  
            $("#param_jiucuo").remove();  
            var td = $(obj_td);  
            var tmp = td.text().replace("参数纠错", "");  
            var html_jiucuo = "<span bgcolor='#ffffff' style='float: right;' id='param_jiucuo'>" +  
                                        "<img src='http://icon.zol.com.cn/detail0802/e2.gif'/>" +  
                                        "<a href='javascript:alert(\"" + tmp + "\")'>参数纠错</a>" +  
                                        "</span>";  
            td.html(html_jiucuo + tmp);  
        }  
    </script> 
 
</head> 
<body> 
    <table width="770" cellspacing="1" cellpadding="0" border="0" bgcolor="#c5d7ed"> 
        <tbody> 
            <tr> 
                <td width="100" bgcolor="#ffffff" valign="middle" align="left"> 
                    <strong>手机类型</strong> 
                </td> 
                <td width="450" bgcolor="#ffffff" class="param_td" onmousemove="show(this)"> 
                    智能手机,3G手机  
                </td> 
            </tr> 
            <tr> 
                <td width="100" bgcolor="#ffffff" valign="middle" align="left"> 
                    <strong>手机制式</strong> 
                </td> 
                <td width="450" bgcolor="#ffffff" class="param_td" onmousemove="show(this)"> 
                    GSM、WCDMA  
                </td> 
            </tr> 
            <tr> 
                <td width="100" bgcolor="#ffffff" valign="middle" align="left"> 
                    <strong>支持频段</strong> 
                </td> 
                <td width="450" bgcolor="#ffffff" class="param_td" onmousemove="show(this)"> 
                    GSM 900/1800/1900MHz  
                </td> 
            </tr> 
        </tbody> 
    </table> 
</body> 
</html> 
posted @ 2009-06-23 09:27  aochen  阅读(105)  评论(0)    收藏  举报