如何使用jquery将工具提示添加到“td”?

时间:2008-10-03 04:00:49

标签: jquery html

我需要使用jquery在工具内部的“td”元素中添加工具提示/ alt。

有人能帮助我吗?

我试过了:

var tTip ="Hello world";
$(this).attr("onmouseover", tip(tTip));

我已经确认我使用“td”作为“此”。

**编辑:**我可以通过使用“alert”命令捕获“td”元素并且它可以工作。所以由于某种原因,“提示”功能不起作用。任何人都知道为什么会这样?

6 个答案:

答案 0 :(得分:24)

$(this).mouseover(function() {
    tip(tTip);
});

更好的方法可能是在您的HTML中添加title个属性。这样一来,如果某人关闭了javascript,他们仍然会得到一个工具提示(尽管不像jQuery那样漂亮/灵活)。

<table id="myTable">
    <tbody>
        <tr>
            <td title="Tip 1">Cell 1</td>
            <td title="Tip 2">Cell 2</td>
        </tr>
    </tbody>
</table>

然后使用此代码:

$('#myTable td[title]')
    .hover(function() {
        showTooltip($(this));
    }, function() {
        hideTooltip();
    })
;

function showTooltip($el) {
    // insert code here to position your tooltip element (which i'll call $tip)
    $tip.html($el.attr('title'));
}
function hideTooltip() {
    $tip.hide();
}

答案 1 :(得分:13)

答案 2 :(得分:3)

$('#grdList tr td:nth-child(5)').each(function(i) {
    if (i > 0) { //skip header
        var sContent = $(this).text();
        $(this).attr("title", $(this).html());
        if (sContent.length > 20) {
            $(this).text(sContent.substring(0,20) + '...');
        }
    }
});

grdList - 表格ID

td:nth-​​child(5) - 第5栏

答案 3 :(得分:1)

var tTip ="Hello world";
$(this).mouseover( function() { tip(tTip); });

答案 4 :(得分:1)

grdList - 表格ID

td:nth-​​child(5) - 列

$('#grdList tr td:nth-child(5)').each(function(i) {
    if (i > 0) { //skip header
        var sContent = $(this).text();
        $(this).attr("title", $(this).html());
        if (sContent.length > 20) {
            $(this).text(sContent.substring(0,20) + '...');
        }
    }
});

答案 5 :(得分:-1)

如果你确实想把这些工具提示放在你的表格单元而不是你的表格标题上 - 那么它们更有意义 - 请考虑将它们放在表格单元格中的内容中,它更有意义