我想用这个函数来创建一个函数,这样我就可以传递一大堆" people"通过它。
$('#marc-leviste .portrait').one('inview', function (event, visible) {
if (visible) {
$("#marc-leviste .photo-list").responsiveSlides({
auto: true
});
}
});
所以我想我只需要去:
var my_function_name = function(my_element) {
$('#marc-leviste .portrait').one('inview', function (event, visible) {
if (visible) {
$("#marc-leviste .photo-list").responsiveSlides({
auto: true
});
}
});
};
但是我不记得如何处理用#marc-leviste
$(---)`替换my_element' as far as syntax --- How do I mix them in the
?
$(' my_element .portrait')没有意义......
假设最终的调用看起来像这样......
my_function_name('#标记leviste&#39);
答案 0 :(得分:1)
我不确定,我完全理解你的问题
my_function_name('#mark-leviste');
//then
$(myelement+' .portrait')
或如果
my_function_name('mark-leviste');
//then
$('#'+myelement+' .portrait')