對於我的projet,我需要知道如何將某些變量傳輸到異步URL。我使用的插件是一個簡單的彈出窗口,它調用一個URL來獲取html數據並顯示結果。將JavaScript變量傳遞給插件函數(異步URL)
我需要使用$(this)因爲我有很多同類的URls。我必須傳輸數據類型(例如:圖片)和產品的id(data-id)。
我的鏈接= <a href="#" class="product" data-type="picture" id="1">Check this out</a>
什麼我想要做的(但不工作):
$('.product').webuiPopover({
var productType = $(this).data('type');
var id = $(this).data('id');
type:'async',
url:'/api/popover/'+ productType +'/'+id
});
這可能嗎?我該怎麼做?
注:這裏是我使用的插件(github上:sandywalker/WebUI中,酥料餅)