3

问题是,当我选择一种语言时,我会用谷歌搜索打开的乐队。这是我的代码:

<! - Begin TranslateThis Button ->

<div id="translate-this">
    <a href="http://translateth.is/" class="translate-this-button">
    <img src = ".. / modules / traduireshop / images / FR. jpg "alt =" "style =" border: 0 "/>
    </ a>
</ div>
<script type="text/javascript" src="http://www.google.com/jsapi"> </ script>
<script type="text/javascript" src="http://x.translateth.is/translate-this.js"> </ script>
<script type="text/javascript">
    // javascript - see below
</ script>

<! - End TranslateThis Button ->

我的网站地址是: http: //www.lecoindesvelos.com

TranslateThis ({
    undoText: 'Undo', '
    panelText 'Translate Into:'
    moreText: More Languages ??'36 "'
    busyText: 'Translating page ...'
    CancelText: 'cancel',
    ddLangs: [
        'fr',
        'en',
        'of'
        'it'
        'es',   
    ],
    noBtn: true
});

你能告诉我哪里有问题吗?
我更想拥有这个乐队。

4

3 回答 3

2

您的对象的语法不正确,请尝试以下操作:

TranslateThis({
    undoText: 'Undo',
    panelText: 'Translate Into:',
    moreText: "More Languages '36'",
    busyText: 'Translating page ...',
    CancelText: 'cancel',
    ddLangs: [
        'fr',
        'en',
        'of',
        'it',
        'es'
    ],
    noBtn: true
});

此外,您错误地关闭了一些 html 标签:

    </ a>
</ div>

那应该是:

    </a>
</div>

最后,这些 HTML 注释缺少一些破折号:

<! - Begin TranslateThis Button ->

尝试这个:

<!-- Begin TranslateThis Button -->
于 2012-12-21T12:00:36.467 回答
0

看起来“翻译此”按钮的服务http://translateth.is已关闭。在该站点上运行的演示也不起作用。

Firebug 显示您的站点尝试访问http://85.17.190.170:9013/socket.io/1/?t=1356094015380,但没有响应)。

另外,您的问题不完整:

问题是,当我选择一种语言时,我会用谷歌搜索打开的乐队。

当您选择一种语言时会发生什么?你说你“谷歌打开的乐队”;你的意思是你对打开的乐队进行谷歌搜索吗?(我猜不是,我只是在这里猜测)。或者您的意思是您希望看到更多的语言列表?

于 2012-12-21T13:12:52.360 回答
0

您在创建对象时使用了不匹配的引号和缺少逗号。正确的代码应该是:

<script type="text/javascript">
    TranslateThis ({
        undoText: 'Undo', //removed a quote
        panelText: 'Translate Into:', //added a colon after key and added comma
        moreText: 'More Languages (36)', //removed unmatched quote, added comma
        busyText: 'Translating page ...', //added comma
        CancelText: 'cancel', 
        ddLangs: [
            'fr',
            'en',
            'of', //added comma
            'it', //added comma
            'es' //removed comma - it's the end of the array, so no need
        ],
        noBtn: true
    });
</script>
于 2012-12-21T12:01:14.460 回答