用dw等编辑工具打开\Admin\Exam\KS.SJXTZJ.aspx
找到以下代码,并增加红色的即可。
<script>
var ClassID = 0;
var key = '';
var tmtype = '0';
var Difficulty = '';
var KnowledgeId = '0';
function check() {
ClassID = jQuery("#<%=this.DrpClassID.ClientID %>").val();
Difficulty = jQuery("#<%=this.DrpDifficulty.ClientID%>").val();
tmtype = '0';
jQuery("input[name=TmType]:checked").each(function(n) {
if (n==0) {
tmtype = jQuery(this).val();
} else {
tmtype += ',' + jQuery(this).val();
}
});
jQuery("#<%=this.LstKnowledgeID.ClientID %> option:selected").each(function(n) {
if (n == 0) {
KnowledgeId = jQuery(this).val();
} else {
KnowledgeId += "," + jQuery(this).val();
}
});
show(1);
}