0

ここから Google トランスレータを使用しますhttp://translate.google.com/translate_tools

ただ、翻訳した文字列が長すぎるので、これで作ります

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

したがって、文字列は短くなり、「...」を追加し、属性「タイトル」に全文を追加します

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

したがって、警告する必要があります。Google 翻訳をクリックしようとしましたが、うまくいきません。

コンソールに追加するため、このコードは機能します。

Google トランスレータをクリックした後にイベントを取得する方法。出来ますか?

4

0 に答える 0