在我的多语言网站中,当我更改 web.config 文件中的区域性名称时,所有页面中的 JavaScript 都不起作用。 (使用
)
javascript 不适用于以下提到的文化
- be-by{白俄罗斯)
- ro-ro(罗马尼亚)
- bg-bg(保加利亚)
- sv-se(瑞典)
- th-th(泰国)
- lv-lv(拉脱维亚)
而它适用于西班牙文化(如 es-mx、es-pa)、英语文化和其他一些文化(如 hu-hu(匈牙利))
我的网站中的 JavaScript 用于弹出窗口和级联下拉菜单的异步调用。
值得注意的是,我正在使用特定于文化的资源文件将网站翻译成他们的特定语言。
编辑:
Jquery 弹出代码 -
$("#dialog").dialog("open");
$("#Product_BookingEndDate").val($("#Product_BookingEndDate").val().split(' ')[0]);
$("#Product_BookingStartDate").val($("#Product_BookingStartDate").val().split(' ')[0]);
$("#Product_StartDate").val($("#Product_StartDate").val().split(' ')[0]);
$("#Product_EndDate").val($("#Product_EndDate").val().split(' ')[0]);
这会打开弹出窗口并从 en-us 文化中的日期时间值中删除时间部分,但在上面提到的情况下则不然文化。文化设置在 web.config 中指定,例如
<globalization culture="tr-tr" uiCulture="tr-tr"/>
In my multilingual website, Javascripts in all the pages are not working when i am changing the culture name in the web.config file. (using <globalization culture="" uiCulture=""/>
)
The javascript is not working for the below mentioned cultures
- be-by{Belarus)
- ro-ro(Romania)
- bg-bg(Bulgaria)
- sv-se(Sweden)
- th-th(Thailand)
- lv-lv(Latvia)
Whereas it works for spanish cultures (like es-mx,es-pa),english cultures and a few other cultures(like hu-hu(hungary))
Javascript in my website is used for popup windows and asynchronous call for cascading dropdowns.
Its noteworthy that i am using culture specific resource files for translating the website into their specific languages.
EDIT:
Jquery pop up code -
$("#dialog").dialog("open");
$("#Product_BookingEndDate").val($("#Product_BookingEndDate").val().split(' ')[0]);
$("#Product_BookingStartDate").val($("#Product_BookingStartDate").val().split(' ')[0]);
$("#Product_StartDate").val($("#Product_StartDate").val().split(' ')[0]);
$("#Product_EndDate").val($("#Product_EndDate").val().split(' ')[0]);
this opens pop up window and removes the time portion from datetime value in en-us culture but not in above mentioned cultures. Culture settings are specified in web.config, e.g
<globalization culture="tr-tr" uiCulture="tr-tr"/>
发布评论