解决方案 »

  1.   

    楼主先弹出层然后在弹出框架,利用jquery替换框架里面src的值
    <div id="window"><iframe id='name1' name='name1' src='a.php'></iframe></div>
    jquery代码如下:<script type="text/javascript">
          $(document).ready(function() {   
            $('#open').click(function() {
              var title = $(this).attr("value");
              $("#name1").attr("src","a.php?你自己拼字符");
              $('#Window1').AeroWindow({           
                WindowTitle:          title,
                WindowPositionTop:    'center',
                WindowPositionLeft:   'center',
                WindowWidth:          500,
                WindowHeight:         300,
                WindowAnimation:      'easeOutCubic'
              });
            });       
          });
        </script>