如何在一个Ajax函数上更改字体大小

时间:2018-12-12 14:42:23

标签: javascript css ajax

我试图创建一个从数据库表中提取的问题列表。我添加了一个代码来增加所有问题的字体大小,但没有任何反应。

我添加了以下代码:$("#elem").css("font-size", "20px");,但这根本不起作用。

我如何使其工作?

谢谢。

HTML代码:tbody id="questionList"

ajax代码:

function ListQuestions()
{
    $.ajax({
       url:"Function.asp?action=getquestions",
       type:'GET',
       success: function(data){
        $('#questionList').empty();
        $('#questionList').append(data);
        $('.rating').each(function(index,t){
            //console.log(index,$(t).parent().parent().html()); 
            $(t).append(AddControls(index+1));
        });
        $('#questionList').find('.comments').each(function(index,t){
            //console.log(index,$(t).parent().parent().html()); 
            $(t).append(AddTextBox(index+1));
$("#elem").css("font-size", "20px");
        });
       }
    });
}

0 个答案:

没有答案