如何在jquery

时间:2015-11-20 11:12:48

标签: jquery

我在ajax的成功中有两个变量,如何在.html()属性中添加它。

    $("#select_name").html();//"data.str & data.re are the variables

2 个答案:

答案 0 :(得分:3)

只是连接它:

$("#select_name").html(data.str+data.re);

答案 1 :(得分:1)

你应该通过html()&的jquery API html(string)首先尝试一下。

Here is the link for jquery API

应该是

$("#id<Selector>").html("<Your input strings>");

如果要获取标记的innerHTML,则应使用上面没有输入字符串的代码。 $("#id<Selector>").html();

在您的情况下,这应该像

$("#select_name").html("First variable = "+data.str+" second variable="+data.re);