谷歌音译不工作在SSL访问网站


Google transliteration not working in SSL access website

我在我的网站上使用谷歌音译(ctrl + G)。

Secure connection (SSL)后Google音译API显示以下错误,阻止加载混合活动内容"http://www.google.com/inputtools/request?text=......."

连我都进去了,https://www.google.com/jsapi

有人能帮帮我吗?

<textarea id="lazeez-sms-hindi-converter" style="width:30em; height:20em" name="lazeez-sms-hindi-converter"></textarea>
<input type="button" id="convert" value="Convert">
<script type="text/javascript" src="jquery-latest.js"></script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script>
function translitrate(w) {
    $.ajax({
        url: 'https://www.google.com/inputtools/request',
        dataType: 'jsonp',
        jsonp: 'cb',
        data: {
            text: w,
            ime: "transliteration_en_hi",
            num: 5,
            cp: 0,
            cs: 1,
            ie: "utf-8",
            oe: "utf-8",
            app: "lazeez-sms"
        },
        success: function(data) {
            $("#lazeez-sms-hindi-converter").val(data[1][0][1][0] + ''n'n' + $("#lazeez-sms-hindi-converter").val());
        }
    });
}

$("#convert").click(function() {
    var code = $('#lazeez-sms-hindi-converter').val();
    translitrate(code);
});
</script>