Bournemouth という単語を赤くしたいのですが、残りの単語は p スタイリングから継承します。
<script type="text/javascript">
$(document).ready(function() {
var now = new Date();
var hours = now.getHours();
var msg;
if (hours >= 0 && hours <= 12) msg = "Today's lunch deals in Bournemouth";
else if (hours >= 13 && hours <= 19) msg = "Tonight's dinner deals in Bournemouth";
else msg = "Tomorrow's lunch deals in Bournemouth";
$('#time p').text(msg);
});
</script>
<div id="time" style="position:absolute; width:100%; padding-top:90px; text-align:center; font-family: Arial, Helvetica, sans-serif; font-weight:bold; color:#FFF; font-size:17px;">
<p></p>
</div>
jQuery の色に使用する必要がある特定のタグはありますか? HTMLを試しましたが、これはコードを出力しただけです。