我正在使用JQuery在单击复选框时使用$('#myDiv').show();
在div中插入html。
但每当我点击Div中某个不是对象的某个地方时(Dropdownlist或Textbox等)。 Div似乎正在关闭。 Jquery中有一个属性可以防止这种情况吗?。
$(".mycheckboxDiv input[@type=checkbox]").click(
function () {
// Insert code here
if ($(this).attr('checked')) {
var y = $(this).attr('value');
var divname = "reactiondiv" + y;
$('#' + divname).show("1000");
getData('ajaxService.asmx/GetControlHtml1', 'MyService/x/UserControls/SeverityandReactionWidget.ascx', divname, y, hiddendivname);
}
});
getData是一个放置HTML的函数。哪个有$('#divName').html(eval(msg))
(我正在使用$.ajax();
)