我需要从位于字符串内的div内调用函数“ show_r_history(this)”。目前,它正在继续工作。
我正在尝试使其在加载时正常工作,但要插入
<body onload="show_r_history(this);">
不起作用。有什么想法吗?
roomhistbutton= <div style="margin-bottom:0px;width:100%;" class="history_button svg_hist x_bcolor_x x_all_rounded" onmousemove="show_r_history(this);"><b><?php print 'aaa';?></b</div><br />'
功能:
function show_r_history(x){
if(rooms[current_room][3].length>0){return}
blockroomchange=1
div_roomhistory=x;x.className='';x.innerHTML=lang['pwait']
ajax_get_rmsg=new XMLHttpRequest()
theurl='msgfetch.php?room='+current_room+'&mtoken='+mtoken+'&tpoi='+tpoint+'&zone='+zone+'&m='+time_ampm
ajax_get_rmsg.open('get',theurl)
ajax_get_rmsg.onreadystatechange=rcv_r_history
ajax_get_rmsg.send()}