引导问题,“fileupload”无法在模态内部工作

时间:2013-03-15 19:27:04

标签: php javascript twitter-bootstrap

所以,我使用的是bootstrap模式,在模态中,我想使用图片上传,但是当选择图像时,没有任何反应,我认为这是一个javascript问题,脚本和CSS是包含在标题中的模态之外。

http://jasny.github.com/bootstrap/javascript.html#fileupload

有什么建议吗?我认为这是一个JavaScript问题

<?php 
if (isset($_SESSION['login']) and !empty($_SESSION['login']) and $_SESSION['rank'] == 3) {


echo '
    <!-- Modal -->
    <div id="insert_post_modal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
       <div class="modal-header">
       <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
       <h3 id="myModalLabel">Insert Post</h3>
      </div>
      <div class="modal-body">
      <p>

    <form action="insert_post_sql" method="post" enctype="multipart/form-data">

        <table border="0">


<div class="fileupload fileupload-new" data-provides="fileupload">
    <div class="fileupload-new thumbnail" style="width: 200px; height: 150px;"><img src="http://www.placehold.it/200x150/EFEFEF/AAAAAA&text=no+image" />
    </div>
<div class="fileupload-preview fileupload-exists thumbnail" style="max-width: 200px; max-height: 150px; line-height: 20px;">
    </div>
<div>
    <span class="btn btn-file"><span class="fileupload-new">Select image</span>
        <span class="fileupload-exists">Change</span><input type="file" /></span>
        <a href="#" class="btn fileupload-exists" data-dismiss="fileupload">Remove</a>
</div>
</div>
          </table>
     </form>

     </p>
     </div>
     <div class="modal-footer">
     <button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
     <input type="submit" button class="btn btn-primary" value="Submit Post">
     </div>
   </div>
   </form>
   ';
}
?>

2 个答案:

答案 0 :(得分:2)

尝试使用文档就绪功能,因为脚本是在模态HTML之前加载的

 $('document').ready(function(){
        $('#insert_post_modal').on('shown', function(){

           $('.fileupload').fileupload();

        }); 

    });

答案 1 :(得分:0)

尝试在模态shown上调用fileupload(即当用户打开它时):

$('#insert_post_modal').on('shown', function(){

   $('.fileupload').fileupload();

});

现在不能测试,对不起