element?-执念已碎的回答
element?
I am Using a Regional language unicode font-face in my site but the numbers are not looking good.
So I want to apply new font-style or css to numbers only..
You can wrap all numbers in p tags with a :
CSS
.number { font-family: Verdana; }
jQuery
$('p').html(function(i, v){ return v.replace(/(\d)/g, '$1'); });
But personally, I would go with James suggestion ;)
http://jsfiddle.net/ZzBN9/