我想将参数传递给jQuery函数的var currentGO = CurrentInput.GameObjectUnderPointer();
属性。但是我不知道我该怎么做?
source
window.onInstaShowReady = function() {
$('.my-instashow').instaShow({
api: '/instashow/api/',
source: '@muradosmann', // this value
width: 'auto',
height: '500px',
columns: 5,
rows: 3,
direction: 'vertical',
lang: 'en',
popupInfo: ''
});
};
答案 0 :(得分:0)
为此,您需要引用.my-instashow
元素。最简单的方法是再次选择它,或者你可以以可扩展的方式完成它并循环遍历所有这些,这样你的代码就可以保持干燥:
<div class="my-instashow" data-source="@muradosmann"></div>
window.onInstaShowReady = function() {
$('.my-instashow').each(function() {
$(this).instaShow({
api: '/instashow/api/',
source: $(this).data('source'),
width: 'auto',
height: '500px',
columns: 5,
rows: 3,
direction: 'vertical',
lang: 'en',
popupInfo: ''
});
});
};