s の長いリストがあり<li>
ます。以下の JQuery コードの一部は、それぞれの最後の単語のスタイルを設定するのに役立ちます<li>
。こちらをご覧ください
今の問題は、スタイルを最後に適用したくないということです<li>
。
私はそれをすることができますか?
これが私のコード全体です。ご覧ください
<html>
<script>
$(document).ready(function(){
$('li').each(function(){
var $this = $(this), text=$this.text().trim(), words = text.split(/\s+/);
var lastWord = words.pop();
words.push('<span class="Red">' + lastWord + '</span>');
$this.html(words.join(' '));
});
});
</script>
<style>
.Red{color:red}
</style>
<body>
<li>my holy tag galore</li>
<li>my sandwich is balloney</li>
<li>the expected is not to be </li>
<li>oh REALLY? </li>
<script type="text/javascript" src="JQuery-1.10.2.js"></script>
</body>
</html>
どうもありがとうございました!