jQuery模态对话内容错误

时间:2013-06-24 18:29:21

标签: jquery

我有一个jQuery模式对话内容如下:

<script type="text/javascript">
   jQuery(
    function() {
     jQuery("#bill")
      .dialog(
       {
        bgiframe: true,
        autoOpen: false,
        height: 350,
        width: 400,
        modal: true
       }
      );
     jQuery('body')
      .bind(
       'click',
       function(e){
        if(
         jQuery('#bill').dialog('isOpen')
         && !jQuery(e.target).is('.ui-dialog, a')
         && !jQuery(e.target).closest('.ui-dialog').length
        ){
         jQuery('#bill').dialog('close');
        }
       }
      );
    }
   );
  </script>

除了为字体添加的颜色代码之外,这个工作正常:

<span class="label user-label" style="background-color:#09F">

      <a href="Bill_details.php?Bill_id=<?php echo $row_Recordset1['Bill_id'];?>" onclick="jQuery('#bill').load('Bill_details.php?Bill_id=<?php echo $row_Recordset1['Bill_id'];?>').dialog('open');  return false">
      **<font color=white>**<?php echo $row_Recordset1['Bill_date']; ?>**</font>**
      </a>

我的意思是当我添加此<font color=white></font>时,jQuery Modal无效。

0 个答案:

没有答案