我有一条法线:
Veuillez indiquer vos spécialités我想在我的JS警报里这样做:
Veuillez indiquer vos spécialités这是我的代码:
$(function(){
alert('Veuillez indiquer vos spécialités');
});小提琴:http://jsfiddle.net/M6rLL/
发布于 2013-11-27 09:52:37
由于您使用的是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演示。以及这个答案解释了为什么后者速度更快:)
https://stackoverflow.com/questions/20238920
复制相似问题