(params)
| 434 | } |
| 435 | // 构建查询字符串 |
| 436 | function buildQueryString(params) { |
| 437 | return '?' + Object.keys(params).map(function (key) { |
| 438 | return encodeURIComponent(key) + '=' + encodeURIComponent(params[key]) |
| 439 | }).join('&') |
| 440 | } |
| 441 | // 显示翻译 |
| 442 | // 显示翻译 |
| 443 | function showTranslation(node, originalText, translatedText) { |