0
我使用了一個名爲jQuery的圖像映射模擬器插件,它需要像這樣的參數:動態添加參數的jQuery
$('#example').imagemap([
{
top_x: 0,
top_y: 0,
bottom_x: 75,
bottom_y:65,
callback: alertCallback}
])
與多個陣列可能:
$('#example').imagemap([
// One image map
{top_x: 0,top_y: 0,bottom_x: 75,bottom_y:65,callback: alertCallback},
// Another image map
{top_x: 150,top_y: 105,bottom_x: 265,bottom_y:170,callback: alertCallback}
]);
我怎麼會去動態根據需要添加更多參數?理想情況下,我會有一個圖像映射「設置」,並能夠根據需要添加更多的新座標。 謝謝!
很好的答案,謝謝!需要稍微修改:必須將object [0]定義爲新對象。謝謝! – Rio 2010-08-16 13:50:10
謝謝 - 對不起。我已經添加了它,以防有人再次遇到這個問題。 – 2010-08-16 14:31:41