こんにちは、カートに追加ボタンをクリックすると、特定の製品に関する動的ページを作成しましたテキストボックスの値を送信したい>次のようなページを作成しました
$(document).on('pageshow','#productdetails', function() {
var pid = getURLParameter('pid');
$.getJSON("http://vinoth.com/magento/api/rest/products/"+pid, function(data) {
if (data.is_in_stock == "1") {
var stock = "In Stock"
}
else {
var stock = "Out of Stock"
}
//var imageurl = 'http://vinoth.com/magento/api/rest/products/'+data.entity_id+'/images';
// $.getJSON(imageurl,function(result){
// $.each(result, function(j, k) {
$("div[data-role='content']").append('<h4>'+data.name+'</h4><img src=' + data.image_url + ' width="100%"><br><p><strong>Description: </strong>' + data.description + '</p><span><strong>Actual Price: </strong>' + data.regular_price_with_tax + ' INR</span><br><span><strong>Special Price: </strong>' + data.final_price_with_tax + ' INR</span><br/> <span><strong>Availablity: </strong>' + stock + '</span><br><div data-role="fieldcontain"><label name="quantity"><strong>Qty: </strong></label><input type="text" name="quantity" value="" data-mini="true" data-inline="true" size="30" id="qty"/></div>').trigger('create');
var qty = $("#qty").val();
$("div[data-role='content']").append('<a data-role="button" data-mini="true" data-inline="true" data-icon="plus" href="checkoutcart.html?pid=' + data.entity_id + '&quantity=' + $("#qty").val() + '" >Add to Cart</a>').trigger('create');
//});
// });
});
});
qty
addtocartボタンリンクを渡すための入力値を取得するにはどうすればよいですか?