我将一个UserControl放在asp.net的aspx页面中。在这个UserControl中,我有一个RadioButtonList,并且在更改了RadioButtonList项时,我想执行下面的jQuery函数。
$('#rdlUser').change(function (e) {
alert("change function");
var radioBtnId = this.id;
var $this = $(this);
radconfirm('Are you sure you want to take leave?', function(arg){
if (arg == true) {
alert("User wants to take leave");
}
else {
alert("User doesn't want to take leave");
}
});
});
答案 0 :(得分:1)
你可以这样做:
$(document).ready(function () {
$('#rdlUser input').change(function () {
alert($(this).val());
});
});
答案 1 :(得分:1)
对于执行事件,您可以使用trigger("eventname")
函数与JQuery。
示例强>
$("#id").keypress(function(){
console.log("input keypress");
});
$("#btn").click(function(){
$("#id").trigger("keypress");
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="text" id="id"> <button id="btn">Trigger keypress event</button>
<强>更新强>
使用生成的HTML,您无法使用$("#generatedid")
触发事件,因为元素在第一次加载时不在DOM中。
您可以使用:
$(document).on("change",".your-radio-button-class",function(){
//Make a test on the value of the select radio
if($(this).val() == "connected")
{
}
else
{
}
});