Copy Code code as follows:
<tr>
<TD height= "60px;" width= "20%" align= "right" valign= "top" >
<font style= "Font-weight:bold;" > Title:</font>
</td>
<TD height= "60px;" width= "80%" align= "left" valign= "Top" >
<a id= "span_content" href= "style=" color:white; "onmousemove=" Showdiv (' span_div ', ', event ') "Onmouseover=" Showdiv (' Span_div ', ', event ') "onmouseout=" Showdiv (' span_div ', ' none ', event) ' >
<c:if test= "${fn:length (schedule.content eq null?) No ': schedule.content) >70} ' >${fn:substring (schedule.content eq null?) No ': schedule.content,0,70)}...</c:if></a>
<span id= "Span_content_span ><c:if test=" ${fn:length (schedule.content eq null?) No ': schedule.content) <=70} ' >
${schedule.content null? ' No ':schedule.content}</c:if></span>
</td>
<div id= "Span_div" class= "Showdiv" style= "Display:none" >
${schedule.content eq null? ' None ': Schedule.content}
</div>
</tr>
<script type= "Text/javascript" >
function Showdiv1 (Objstr,str,ev) {//Display object based on mouse position, parameter EV as event
Position of the Var objx,objy;//object (x,y)
The (x) horizontal position of the Var mousex=10;//object from the width of the mouse
The (Y) vertical position of the Var mousey=-2;//object is away from the height of the mouse
var obj = document.getElementById (OBJSTR);
obj.style.display=str;//Show or hide objects
Obj.style.left = ' 200px ';
Obj.style.top = ' 110px ';
}
</script>