小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

當(dāng)文本框更改時(shí),如何將javascript事件處理程序綁定到Ajax Control Toolkit組合框

 印度阿三17 2019-07-24

我需要一個(gè)用于A(yíng)SP.NET項(xiàng)目的組合框,所以我決定使用Ajax Control Toolkit組合框(http://www./AJAX/AjaxControlToolkit/Samples/ComboBox/ComboBox.aspx).

我不想使用回發(fā),因?yàn)槲也幌胫匦录虞d頁(yè)面,但我需要知道文本框中的文本何時(shí)更改,以便我可以調(diào)用服務(wù)器來(lái)保留新的列表項(xiàng).

我很好奇如何將onchange或onblur事件綁定到此組合框使用的輸入框.

這是我的頁(yè)面:

<%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="cc1" %>

<cc1:ComboBox ID="PlantDropDown" runat="server" OnInit="PlantDropDown_Init" DropDownStyle="DropDown" 
             AutoCompleteMode="SuggestAppend" 
            ItemInsertLocation="OrdinalText" AutoPostBack="false">


                </cc1:ComboBox>

更新:我嘗試使用該建議,我收到此錯(cuò)誤:

$find("PlantDropDown") is null
[Break on this error] $find('PlantDropDown').add_propertyChanged(function(sender, e) {\r\n

我在javascript方面使用jQuery,順便說(shuō)一句,如果有幫助的話(huà).

最后更新:
我得到了它的工作,感謝crescentfresh的幫助,最后我在我的.aspx文件中有這個(gè):

    <input type="hidden" id="PlantDropDownID" value="<%= PlantDropDown.ClientID %>" />

這是在我的javascript文件中,因?yàn)槲也辉谖业?aspx文件中推送javascript:

elem = document.getElementById('PlantDropDownID');
$find(elem.value).add_propertyChanged(function(sender, e) {
    if (e.get_propertyName() == 'selectedIndex') {
        var newValue = sender.get_textBoxControl().value;
    }
})

解決方法:

我相信你應(yīng)該綁定到“propertyChanged”事件并檢查“selectedIndex”屬性的更改:

$find('PlantDropDown').add_propertyChanged(function(sender, e) {
    if (e.get_propertyName() == 'selectedIndex') {
        var newValue = sender.get_textBoxControl().value;

        // persist selected value here...
    }
})

與通常的警告約.NET control ids in the client.

api并不容易,這是肯定的.例如,沒(méi)有.get_value()方法,這將是很好的,而不必通過(guò)嵌入的文本框控件.

編輯:

&GT $find(“PlantDropDown”)為空

確保使用正確的ID.請(qǐng)參閱.NET control ids in the client.要獲得參考,您可能需要執(zhí)行以下操作:

$find('<%= PlantDropDown.ClientID %>')

&GT我在javascript方面使用jQuery

這沒(méi)有任何意義.

來(lái)源:https://www./content-1-349851.html

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶(hù)發(fā)布,不代表本站觀(guān)點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買(mǎi)等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶(hù) 評(píng)論公約

    類(lèi)似文章 更多