我有以下结构,我想将其附加到<div>
但它显示编译时错误。
$('#row1').html("<div class="4u 12u(mobile)">
<section>
<a href="#" class="image featured"><img src="images/kokan.jpg" alt="" /></a>
<header >
<h3>result[i]</h3>
<p></p>
</header>
</section>
</div>");
答案 0 :(得分:4)
A = [1 2 3; 4 5 6; 7 8 9];
x = [1 3]; y = [3 2];
B = getxy/setxy(A, x ,y) % [7 6]
您需要通过连接部分来构建正确的字符串。 $('#row1').html('<div class="4u 12u(mobile)">'
+'<section>'
+'<a href="#" class="image featured"><img src="images/kokan.jpg" alt="" /></a>'
+'<header >'
+'<h3>'+result[i]+'</h3>'
+'<p></p>'
+'</header>'
+'</section>'
+'</div>');
此部分也在破坏,您应该使用"<div class="4u
。