jquery UI dialog 和 asp.net 控件 出错 失效
时间:2010-08-28 来源:beyoung
代码
<script type="text/jscript" src="http://www.cnblogs.com/js/jquery-1.4.2.min.js"></script>
<script type="text/jscript" src="http://www.cnblogs.com/js/jqueryUI/js/jquery-ui-1.8.4.custom.min.js"></script>
<script type="text/jscript">
$(document).ready(
function()
{
$("#showCourseDiv").dialog
({autoOpen: false,
200,
width: 400,
modal: true,
});
}
);
function ShowDiv(gid)
{
$("#hfGroupId").val(gid);
//dilog默认会把弹出框层,追加到body上面.但asp.net需要控件都在form中.
$("#showCourseDiv").parent().appendTo($("form:first"));
$("#showCourseDiv").dialog('open');
}
</script>
<script type="text/jscript" src="http://www.cnblogs.com/js/jqueryUI/js/jquery-ui-1.8.4.custom.min.js"></script>
<script type="text/jscript">
$(document).ready(
function()
{
$("#showCourseDiv").dialog
({autoOpen: false,
200,
width: 400,
modal: true,
});
}
);
function ShowDiv(gid)
{
$("#hfGroupId").val(gid);
//dilog默认会把弹出框层,追加到body上面.但asp.net需要控件都在form中.
$("#showCourseDiv").parent().appendTo($("form:first"));
$("#showCourseDiv").dialog('open');
}
</script>
相关阅读 更多 +