2
我有一個工具,它不是我的,它位於子域中:app.domain.com
。這個工具是英文的,這些人不想翻譯它。更改iframe中的文本內容
因此,我決定在iframe中翻譯並使用jQuery(Google Translate不起作用)和其他子域apps.domain.com
更改文本。
我該怎麼辦?我在這個網上搜索,但我沒有得到迴應。
這是我的代碼,它沒有運行:
<iframe src="http://app.domain.com" id='inneriframe' scrolling="no"></iframe>
<script>
$(document).ready(function() {
$("#inneriframe").contents().find('body').text("Clientes");
$(this).html($(this).html().replace('Password','<span class="stars stars5">* * * * *</span>'));
$("#inneriframe").contents().text($(this).text().replace('Password','Name:'));
});
}
</script>
由於iframe的內容來自不同的域,因此它將不起作用... – DarkAjax