我有一个带有链接的页面和三个标签。默认视图是标签1
标签位于页面折叠
下方最终结果应该是,当用户点击链接时,应该打开Tab3并向上移动页面,以便用户可以查看选项卡的内容。
现在,用户点击链接并打开tab3,但因为标签位于页面折叠下方,所以似乎什么也没发生。
我希望屏幕也向下移动到标签页。我目前使用onClick =“parent.location ='#contact'”打开标签
这是链接的代码
<form>
<input class="listbutton" type="button" onClick="parent.location='{site_url}
{url_title text="`$action_object->m_listing_info->title`"}/
{route_suffix for="listings"}{$action_object->m_listing_info->listing_id}#contact'"
value="{translate text='contact_owner'}" title="{translate
text='listestablishmentforfree'}">
</form>
这是它链接到
的代码<li>
<a href="#contact"><span>{translate text='contact_owner'}</span></a>
</li>
答案 0 :(得分:0)
因为你没有代码,所以我能理解我正在帮助你
$('#anchorID').click(function() {
$("#contacts").focus();
});