jsp-如何串联一个字符串和一个变量?

时间:2019-01-24 03:55:22

标签: jsp

我写了一行简单的代码,如下所示:

public B() {
    super("some default text"); //will call public A(String text)
}

if (autype.equalsIgnoreCase("Superuser")) { str += "<input type=\"radio\" name=\"usertype\"" +rowid+ "value=\"Superuser\" checked> Superuser "; 是一个声明为0的变量。我试图实现的目的是使用户类型以增量形式输出为usertype1,usertype2,usertype3等。

运行代码并检查名称元素时,它显示:

rowid

我想要的是<input type="radio" name="usertype" 2value="Superuser"> 。而且我似乎无法使连接成为名称本身的一部分。我做错什么了吗?

1 个答案:

答案 0 :(得分:1)

您的连接应该是这种方式。

 if (autype.equalsIgnoreCase("Superuser")) {
    str += "<input type=\"radio\" name=\"usertype"+rowid+"\"  value=\"Superuser\" checked> Superuser ";