Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用脸书
帮助从链接打开盒子
但我想从 jquery 单击功能而不是从超链接打开框。
像 $("#Button2").click(function() { 打开 facebox 的代码 });
谢谢
类似于:jQuery.facebox('你好')
.
$("#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' }); });