ASP.NET ImageButton OnClientClick 屬性

2018-09-12 15:13 更新

ASP.NET ImageButton ValidationGroup 屬性


ImageButton 控件 ImageButton 控件

定義和用法

當(dāng) ImageButton 控件被點(diǎn)擊時(shí),OnClientClick 屬性用于將客戶端腳本設(shè)置為運(yùn)行。

除了預(yù)定義腳本之外,在該屬性中規(guī)定的腳本會通過 ImageButton 的 "OnClick" 事件來運(yùn)行。

語法

<asp:ImageButton OnClientClick="func" runat="server" />

屬性 描述
func 當(dāng) ImageButton 被點(diǎn)擊時(shí)被運(yùn)行的客戶端腳本。


實(shí)例

下面的實(shí)例在 ImageButton 控件被點(diǎn)擊時(shí)運(yùn)行兩個(gè)腳本:

<script runat="server">
Sub script1(obj As Object, e As ImageClickEventArgs)
??lblMsg.Text="Hello!"
End Sub
</script>

<form runat="server">
<asp:ImageButton OnClick="script1" OnClientClick="script2()"
ImageUrl="img.gif" runat="server" />
<br />
<asp:label id="lblMsg" runat="server" />
</form>

<script>
function script2()
??{
??return confirm('Hello!');
??}
</script>

演示實(shí)例 ?

ImageButton 控件 ImageButton 控件
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號