jquery Colorbox 传值

colorbox是jquery的一个弹窗UI
1$(function(){ 2 $(".class").click(function(){ 3 var value=https://www.it610.com/article/$(this).text(); 4 $(this).colorbox({href:"url.php",data:{post-to-url-value:value}}); 5 10 }) 11 12 }) 13
jquery的colorbox弹窗插件通过data 参数来传递值,herf参数确定传值网页 ,同时传值网页也是弹出窗口页面的内容。

    推荐阅读