我有一个单选按钮列表,
我有在单选按钮点击事件上运行的功能 这是我的jQuery
$("input[type='radio']").click(function () {
var str = $(this).attr("class");
if (str == undefined) {
str = "";
}
if (str.search("selectedRadio") < 0) {
$("input[type='radio']").removeAttr("class").attr('checked', false);
$(this).attr('checked', true).attr("class", "selectedRadio");
id = $(this).attr('id');
MID= $("input[type='hidden'][name='HiddenMedID']").val();
ID = $(this).val();
PID = $("#GetNewPatientID").val();
$(this).parent().prepend("<img src='/icon_loading.gif' id = 'fetchingSP' width='18' height='18' id='PleaseWaitRadioCircle' />");
FunctionOne();
FunctionTwo(ID, PID, MID);
FunctionThree(ID, PID);
FunctionFour(ID, PID);
}
});
我注意到,当我在点击事件中有以下功能时 点击单选按钮有延迟。我的意思是,如果用户点击单选按钮,则需要一秒或一半才能选择该单选按钮。
FunctionOne();
FunctionTwo(ID, PID, MID);
FunctionThree(ID, PID);
FunctionFour(ID, PID);
我不明白这是如何相关的,如果我在点击事件中删除或评论这四个功能,而不是没有延迟。
这是关于剃刀视图的ASP.Net MVC3.0应用程序。