伙计我无法在html中定义变量..以下是我的代码: -
sb.appendHtmlConstant("<div id='Button +"i"' class=\"" + getClass(c.getIndex()) + "\">");
我无法定义&#34; i&#34;变成一个变量..请帮忙吗?
非常感谢
答案 0 :(得分:0)
您需要在其之前和之后添加+
。
sb.appendHtmlConstant("<div id='Button "+i+"' class=\"" + getClass(c.getIndex()) + "\">");
在java中向字符串添加变量的方式如下:
String variable = "the variable string";
我们想要添加它以便我们得到:
"We want to add _the variable string_ to here"
所以我们将使用:
String result = "We want to add _"+ variable +"_ to here";
^/*This and ^this are important*/
答案 1 :(得分:0)
我应该超出我认为的主要报价,如下所示:
sb.appendHtmlConstant("<div id='Button" + i + "' class=\"" + getClass(c.getIndex()) + "\">");