少し奇妙な質問ですが、JQuery .html ステートメントの途中で変数を追加することは可能ですか?
IEのようなことができますか。
var x = 150;
$("#sandbox").html("<div id='toannimate" + x + "' style='width:100px;'></div>");
作成したばかりの新しい名前で div を作成したい。したがって、ループがあり、.html が追加されるたびに、新しい div id は toanimate1、toanimate2、toanimate3 などになります。
または、その div の絶対位置を定義したい場合は、x pos を変数の数値に設定できますか?
前もって感謝します。