工具提示未显示相关数据

时间:2017-12-15 09:16:27

标签: php jquery ajax

我正在开发一个项目,其中列出了5个模块'(Module1,Module2 ......等等)。它显示在一个html表中。每个模块都有一些章节,因此当表格中显示模块时,我需要制作一个工具提示,以便当用户将鼠标悬停在模块名称上时,一个小工具提示会显示与之关联的所有章节标题。在实现这个方面非常成功但却停留在控制台显示消息的位置 'Empty string passed to getElementById().'并且工具提示中没有显示章节,工具提示显示为"请等待.."。 这是我的相同代码,

这是我的jQuery和AJAX,

 <link href='jquery-ui.css' rel='stylesheet' type='text/css'> 
      <script src='jquery-1.12.0.min.js' type='text/javascript'></script> 
      <script src='jquery-ui.js' type='text/javascript'></script> 

   <script>  
      $(document).ready(function(){

 // initialize tooltip
 $( ".panel-body td" ).tooltip({
   track:true,
   open: function( event, ui ) {
   var id = this.id;
   var split_id = id.split('_');
   var module_id = split_id[1];

   $.ajax({
    url:'fetch_details.php',
    type:'post',
    data:{module_id:module_id},
    success: function(response){

    // Setting content option
    $("#"+id).tooltip('option','content',response);

   }
  });
  }
 });

 $(".panel-body td").mouseout(function(){
   // re-initializing tooltip
   $(this).attr('title','Please wait...');
   $(this).tooltip();
   $('.ui-tooltip').hide();
 });

});
</script>

和fetch_details.php

 <?php
    $dbhost = 'localhost';
    $dbuser = 'root';
    $dbpass = '';
    $conn = mysql_connect($dbhost, $dbuser, $dbpass);

    if(! $conn ) {
        die('Could not connect: ' . mysql_error());
    }
        echo '';
        mysql_select_db('dbname');

        $moduleid = $_POST['module_id'];

        $sql= mysql_query("SELECT title FROM table WHERE  module_id='$moduleid'");


        $html = '<div>';
        $i = 1 ;
        if( $sql === FALSE ) {
            trigger_error('Query failed returning error: '. mysql_error(), E_USER_ERROR);
        } else {
            while($row = mysql_fetch_array($result)){
                $title = $row['title'];

                $html .= "<span class='head'>"<?php echo $title ; ?> " :</span><span>"" mins</span><br/>";
                $i++;
            }
        }
        $html .= '</div>';

    echo $html;

?>

直到现在我无法找出这个出了什么问题。任何帮助或建议将受到高度赞赏。

1 个答案:

答案 0 :(得分:0)

在ajax调用的Promise {_40: 0, _65: 0, _55: null, _72: null} _40: 0 _55: "{"show_explanation":1,"answer_result":2, //More json content will be here}" _65: 1 _72: null 函数中无法访问id变量。 您需要在java脚本中将其声明为全局变量。 希望这会有所帮助。

修改

另一种方法是您可以将选定的success发送到帖子请求并作为响应访问成功功能。

这是您可以提出的ajax请求:

id

AND $( ".panel-body td" ).tooltip({ track:true, open: function( event, ui ) { var id = this.id; var split_id = id.split('_'); var module_id = split_id[1]; $.ajax({ url:'fetch_details.php', type:'post', dataType:'JSON'//change the response type to JSON data:{module_id:module_id,selected_id:id}, success: function(response){ // Setting content option //Access the selected and HTML variable from the response. $(response.selected_id).tooltip('option','content',response.html); } }); } }); $(".panel-body td").mouseout(function(){ // re-initializing tooltip $(this).attr('title','Please wait...'); $(this).tooltip(); $('.ui-tooltip').hide(); }); });

fetch_details.php