这是我想用我的动态id替换quik-view2的函数,我可以在onclick函数上更改它
$("#quik-view2").fancybox({
'width' : '90%',
'height' : '90%',
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe'
});
答案 0 :(得分:0)
你可以像这样使用
<input type="button" onclick="LoadFancyBox(your id here)" value="test"/>
<script type="text/javascript">
function LoadFancyBox(id)
{
$("#"+id).fancybox({
'width' : '90%',
'height' : '90%',
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe'
});
}
</script>