我有一个 AJAX 函数来隐藏和显示 HTML 中的表单字段。我想在 AJAX 函数中添加一些 CSS。
<script>
$(function() {
$('#advo_other').hide();
$('#advocate').change(function() {
var val = $(this).val();
$('#advo_other').hide();
switch (val) {
case 'Other':
$('#advocate') // want to add css there......
$('#advo_other').show();
break;
}
});
});
</script>
样式如下:
<style type="text/css">
.fade {
color: #CCC;
border-color:#CCC;
}
</style>