0
我正在使用http://designwithpc.com/Plugins/ddSlick#demo。一個插件,用圖像,文本等自定義下拉菜單。 我試圖從下拉列表中選擇一個選擇選項時獲取文本,但我的瀏覽器控制檯日誌說未定義。我已經嘗試將數據放入第7行的變量中,但仍然給出了相同的結果。從選擇下拉菜單中獲取數據
$('#myDropdown').ddslick({
data:ddData,
width:300,
selectText: "Select your preferred social network",
imagePosition:"right",
onSelected: function(selectedData){
var selectedData = $('#myDropdown').data('ddslick');
console.log(selectedData.text);
}
});
這是ddData的結構:
var ddData = [{
text: "Facebook",
value: 1,
selected: false,
description: "Description with Facebook",
imageSrc: "http://dl.dropbox.com/u/40036711/Images/facebook-icon-32.png"
}, {
text: "Twitter",
value: 2,
selected: false,
description: "Description with Twitter",
imageSrc: "http://dl.dropbox.com/u/40036711/Images/twitter-icon-32.png"
}, {
text: "LinkedIn",
value: 3,
selected: true,
description: "Description with LinkedIn",
imageSrc: "http://dl.dropbox.com/u/40036711/Images/linkedin-icon-32.png"
}, {
text: "Foursquare",
value: 4,
selected: false,
description: "Description with Foursquare",
imageSrc: "http://dl.dropbox.com/u/40036711/Images/foursquare-icon-32.png"
}];