从按钮单击调用jquery facbox

时间:2009-12-20 08:03:33

标签: javascript jquery facebox

我正在使用facebox

为链接

打开方框提供帮助

但我想从jquery点击功能打开框而不是从超链接。

像             $( “#Button2的”)。点击(函数()              {              代码打开facebox              });

谢谢

3 个答案:

答案 0 :(得分:2)

类似于:jQuery.facebox('hi there')

答案 1 :(得分:2)

$("#Button2").click(function() { 

  // to load html/php page
  jQuery.facebox({ ajax: 'remote.html' });
  jQuery.facebox({ ajax: 'remote.php' });

  // load image
  jQuery.facebox({ image: 'images/dude.jpg' });

});

答案 2 :(得分:0)