jquery Colorbox 传值

colorbox是jquery的一个弹窗UI 

1$(function(){
  2 $(".class").click(function(){
  3 var value=$(this).text();
  4 $(this).colorbox({href:"url.php",data:{post-to-url-value:value}});
  5
  
 10 })
 11
 12 })
 13

jquery的colorbox  弹窗插件  通过data 参数来传递值,herf参数确定传值网页 ,同时传值网页也是弹出窗口页面的内容。

你可能感兴趣的:(jquery)