我在“function.js”中有这个功能:
test{
contents = '<html><head><title>Υπολογισμός Φ.Π.Α</title></head><body bgcolor="beige">' + "Το αρχικό ποσό που έδωσες είναι : " + axia + " euro." + '<br><br>' + "Το ποσό του Φ.Π.Α " + foros + "%" + " είναι : " +
teliko_apotelesma.toFixed(3) + " euro." + "<br> <br>" +
"Η τιμή του προϊόντος χωρίς το Φ.Π.Α " + foros + "%" + " είναι : " + posoxorisfpa.toFixed(2) + " euro." + '<a href="javascript:window.close()"><br><br><img src=image/Close1.png><br><br></img></a>'
+ '<hr size=5 width=100% color=red >' + '</body></html>'
options = "toolbar=1,status=1,menubar=1,scrollbars=1,resizable=1,width=600,height=300";
newwindow = window.open("", "mywindow", options);
newwindow.document.write(contents);
}
我为file1.html调用了这个函数,windows已经打开但是显示了这个:
�� ������ ���� ��� ������ ����� : 110 euro.
用希腊语正确显示:
Το αρχικό ποσό που έδωσες είναι : 118 euro
如果我将函数test
放在“file1.html”的<head>
中,则输出正确。
为什么我会遇到这个问题?
答案 0 :(得分:0)
我认为你还没有以UTF-8格式保存js文件,因此出现问题。
使用任何编辑器并使用UTF-8保存(如果可以选择,则不含BOM)。