colorbox iframe小记

第一种点击链接弹出

前提是引用jquery、colorbox的js、colorbox的css

html

<a id="baidu" href="http://www.baidu.com" >baidua>

js

  $("#baidu").colorbox({ innerWidth: 610, innerHeight: 580, iframe:true});

 

第二种onclick:

$.colorbox({ innerWidth: 610, innerHeight: 580, iframe:true,href:'http://www.baidu.com'});

第三种 onclick执行后台方法之后再弹出生成的页面那么只能 使用ajax

你可能感兴趣的:(colorbox iframe小记)