模仿悬停属性

时间:2015-05-06 20:06:52

标签: c# jquery

我有一个文本框和一个按钮。我需要在按钮点击时模仿文本框的悬停属性(如果文本框值为空)。

我尝试了以下内容,但它不起作用:

HTML

<input id="surname" type="text" runat="server" />
<button id="Button1" runat="server" type="submit" onserverclick="RegistrationBtn_Click">OK</button>

脚本

 function MakeHover() {
     $("#surname").mouseenter();
 }

C#

if (surname.Value == "")
  ScriptManager.RegisterStartupScript(this, this.GetType(), "Hover", "MakeHover();", true);

0 个答案:

没有答案