Javascript iframe中的引导行流体

Javascript iframe中的引导行流体,javascript,jquery,html,twitter-bootstrap,Javascript,Jquery,Html,Twitter Bootstrap,我已经创建了一个引导模式窗口,其中放置了一个iframe 现在,当我尝试使用RowFluid引导类时,所有行都位于彼此的顶部 这只发生在firefox中,而不发生在google chrome中 请给我一些建议 <div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" > <div id="myModalBody" class="modal-body"> <button type

我已经创建了一个引导模式窗口,其中放置了一个iframe

现在,当我尝试使用RowFluid引导类时,所有行都位于彼此的顶部

这只发生在firefox中,而不发生在google chrome中

请给我一些建议

<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" >
<div id="myModalBody" class="modal-body">
    <button type='button' class='close' data-dismiss='modal' aria-hidden='true'></button>
    <h3 id='myModalLabel'>Profile</h3>
    <iframe id='profile'  width='99.5%' height='94%' style='border-width: 0;' scrolling='no'></iframe>
</div>



 function setprofile(id)
{
    profileid=id;

    $('#profile').attr('src','profile.php?profileid=" + profileid + "');

}

轮廓
函数集配置文件(id)
{
profileid=id;
$('profile').attr('src','profile.php?profileid=“+profileid+”);
}

我遇到了类似的问题,并发现我使用了错误的元素。这是我的问题和解决办法