Google Translate Widget - Translation complete callback

后端 未结 3 1094
梦谈多话
梦谈多话 2021-01-17 18:26

I\'m using the google translate widget on one of my sites with the following google supplied code:

<
3条回答
  •  情话喂你
    2021-01-17 18:32

    $( document ).ready(function() {
        $('#google_translate_element').bind('DOMSubtreeModified', function() {
            var val = $(this);
            var strlang = "" + val[0].innerText + "";
            console.log(strlang); // print your selected language in console
        });
    });
    

提交回复
热议问题