JSP文件:[/shopcart.jsp] 的第 [84] 行发生了一个错误 String literal is not properly closed by a double-quote 81: double subtotal = price * quantity; 82: total += subtotal; 83: out.print("<tr>"); 84: out.print("<td><%= name %></td>"); 85: out.print("<td><%= price %>鍏�</td>"); 86: out.print("<td> 87: <button class="quantity-btn" data-id="<%= info[0] %>" data-action="minus">-</button>
时间: 2024-02-15 07:28:49 浏览: 144
1_shopCart.jsp
根据你提供的信息,第84行代码中存在一个语法错误,即字符串字面量没有被双引号正确关闭。在这行代码中,双引号未被正确转义,导致编译器无法识别该字符串字面量的结尾位置。正确的写法应该是:
out.print("<td><%= name %></td>");
out.print("<td><%= price %>鍏�</td>");
out.print("<td>");
out.print("<button class=\"quantity-btn\" data-id=\"<%= info[0] %>\" data-action=\"minus\">-</button>");
在第84行代码中,字符串字面量的结尾处应该添加一个双引号,并在双引号前添加一个反斜杠,以转义双引号字符。
阅读全文