私はプログラムを実行するたびに色がシャッフルされるカラーグリッドを持っています。また、いくつかの特定の値(赤= 2、青= 3、緑= 4、黄色= 1、オレンジ= 5、黒色= 1、茶色= 6、ピンク= 5)。これらの値をカラーグリッドのtdタグに割り当てます。 HTML:jqueryを使用してカラーグリッドのtdタグに値を設定
<table border="5px" width="500px" height="50px" align="center">
<tr id="colors">
<td height="50px" orderId="1" bgcolor="red"></td>
<td height="50px" orderId="6" bgcolor="brown"></td>
<td height="50px" orderId="5" bgcolor="pink" ></td>
<td height="50px" orderId="0" bgcolor="blue" ></td>
<td height="50px" orderId="7" bgcolor="black"></td>
<td height="50px" orderId="2" bgcolor="green"></td>
<td height="50px" orderId="4" bgcolor="orange" ></td>
<td height="50px" orderId="3" bgcolor="yellow"></td>
</tr>
</table>
のjQuery:ここ 色のシャッフリングが行われ、シャッフル場合、各セルの色が見出されます。 https://jsfiddle.net/pckshu27/5/
の代わりに
.text()
を使用することもできます。ここで、 '(red = 2、blue = 3)'の色はどこに配置しましたか? – ameenulla0007もう一度フィドルに確認してください。更新しました。 – Preethi
あなたは何をしたいですか?あなたはすでに ''要素に色を割り当てているようですか? – aphextwix