首页 > 代码库 > js奇葩错误

js奇葩错误

局部刷新中显示图片:

错误写法:var innerDiv = "<p class=‘town_con‘ id=‘city1‘>";
              var div;

     div = innerDiv+"<img style=‘width:340px; height:210px;‘ src = http://www.mamicode.com/‘"+<%=request.getContextPath() %>+“/UploadCityImages/”+data[0].picSrc + "‘/></p>";

$(‘#city1‘).append(div);

 

 

 

红色部分写错了

 

正确:

var innerDiv = "<p class=‘town_con‘ id=‘city1‘>";
              var div;

     div = innerDiv+"<img style=‘width:340px; height:210px;‘ src = http://www.mamicode.com/‘"+"<%=request.getContextPath() %>/UploadCityImages/"+data[0].picSrc + "‘/></p>";

$(‘#city1‘).append(div);

 

 

 

写的时候只:alert(<%=request.getContextPath() %>);结果错误 没有显示结果

修改:alert(”<%=request.getContextPath() %>“)正确显示路径,猜测可能是js的budge

 

js奇葩错误