我有一个 id 这是逻辑所以我在这里动态发送文本现在我想调整这个文本的大小和重新着色。我的 jquery 看起来像这样
<script type="text/javascript">
$(function($){
$("#daily_type").change(function()
{
logic = $(this).val()
LogicShow(logic)
})
function LogicShow(logic)
{
if ( logic == "iss" )
{
var spanText = "Based on the severity High" ;
$("#logic_change").html(spanText);
}
if ( logic == "unix" )
{
var spanText = "Summary reflects based on the number of events.Such as how many times number of events observed" ;
$("#logic_change").html(spanText);
}
}
});
</script>
所以现在我怎样才能传递一些好的文本格式和颜色的文本。