$(document).ready(function(){$('.only_poster').click(function(){var uid=$(this).attr('data-userid') var appendurl='&uid='+uid let url=new URL(location.href) location.href='/topicdetail.php'+url.search+appendurl}) $('#topic_keyword').keypress(function(event){if(event.keyCode=='13'){var searchUrl=$(this).parent().find('a').attr('href') var topicKeyword=$('#topic_keyword').val() var url=new URL(location.href) var params=url.searchParams var topicId=params.get('t') if(topicKeyword==''){return false} location.href=searchUrl+'?query='+encodeURIComponent(topicKeyword)+'&t='+topicId}}) $('.c-searchBox__topic').click(function(){var searchUrl=$(this).attr('href') var keyword=$(this).parent().find('#topic_keyword').val() if(keyword!=''){var url=new URL(location.href) var params=url.searchParams var topicId=params.get('t') location.href=searchUrl+'?query='+encodeURIComponent(keyword)+'&t='+topicId}else{location.href=searchUrl} return false})})