-1
var test = $('.text1').val();
var re = /\w+/g
$('.text3').html(test.replace(re, '<i>' + test.match(/\w+/g) + '</i>'));

如果基本值如“Link text тест”,则返回“ <i>Link,text</i> <i>Link,text</i> тест”。但我需要“ <i>Link</i> <i>text</i> текст

我能做些什么?

4

1 回答 1

2

难道你不能,

body {
    font-style: italic; // add italic!important if you need to...
}

你的问题措辞不好。

否则如果它必须是 jquery 或 js 那么......

$("*").css("font-style", "italic");

这也应该有效。

于 2013-08-10T00:18:43.673 回答