瞄链接是用JS语言使一个控件获得聚焦
<script language= "javascript ">
function focu()
{
document.getElementById( "TextBox3 ").focus();
}
</script> 这个是JS语句
<a href= "#Bottom " id= "lin1 " runat= "server " > 留言 </a> 这个是瞄链接
this.lin1.Attributes.Add( "onclick ", "focu(); "); 这个是后台语句
如果这个href没有的话,操作没有问题,但是现在这个效果不能实现
我的目标是点“留言”自动移动到留言的地方,然后把焦点在留言框里面
------解决方案-------------------- <a href= "#TextBox3 "> 留言 </a>