我有这个法国字符串:
Veuillez indiquer vos spécialités
我想在JS Alert中这样做:
Veuillez indiquer vos spécialités
这是我的代码:
$(function(){
alert('Veuillez indiquer vos spécialités');
});
在这里小提琴:http://jsfiddle.net/M6rLL/
答案 0 :(得分:6)
因为你正在使用jQuery:
$(function(){
var frenchy = 'Veuillez indiquer vos spécialités';
alert( $('<div />').html( frenchy ).text() );
// If performance is an issue, you can change the dom creation of the div:
// alert( $(document.createElement('div')).html( frenchy ).text() );
});
jsFiddle Demo。而this answer explains为什么后者更快:)