点击google翻译后获取活动

时间:2013-07-11 09:24:49

标签: jquery google-translate

我在这里使用谷歌翻译http://translate.google.com/translate_tools

然而,翻译的字符串太长,所以我用这个

display: inline-block;
text-align:center;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width:19%;

所以字符串会很短并添加“...” 我在attr“title”

上添加了全文
$("nav").find("li").each(function () {
    if (this.scrollWidth > this.clientWidth) {
        alert($(this).find("a").text());
        //$(this).find("a").title = $(this).find("a").innerText;
    }
});

所以它应该提醒。我尝试点击谷歌翻译,这不起作用。

这段代码很有用,因为我在控制台上添加了。

点击谷歌翻译后如何获得该活动。有可能吗?

0 个答案:

没有答案