Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は。。をしようとしています
function doRow(rowNum) { $.ajax({ url: "z.html", cache: false, success: function(html){ $('#result + rowNum + "'").append(html); } });
これはうまくいかないようです。
また、そこまで到達したら変数を data 属性に渡したいと思います。
これを試して:
function doRow(rowNum) { $.ajax({ url: "z.html", cache: false, success: function(html){ $('#result'+rowNum).append(html); } });