谁能帮我把这段jquery代码改回javascript
<scripttype="text/javascript">$(function(){//分配管理权限$("#rblUserTypeinput").eq(0).click...
<script type="text/javascript">
$(function() {
//分配管理权限
$("#rblUserType input").eq(0).click(function() {
$("#tbList1").hide();
$("#tbList2").hide();
});
$("#rblUserType input").eq(1).click(function() {
$("#tbList1").show();
$("#tbList2").show();
});
$("#rblUserType input").eq(2).click(function() {
$("#tbList1").hide();
$("#tbList2").show();
});
//用户权限赋值
var typeArr = '<%=this.strType %>';
if (typeArr == 1) {
$("#tbList1").hide();
$("#tbList2").hide();
}
if (typeArr == 3) {
$("#tbList1").hide();
$("#tbList2").show();
}
var cbLevelArr = '<%=this.strLevel %>';
$("input[name='cbLevel']").each(function() {
var cllarr = "," + $(this).attr("value") + ",";
if (cbLevelArr.indexOf(cllarr) != -1) {
$(this).attr("checked", true);
}
});
});
</script>
从 // 用户权限赋值下面开始改就行了。 发太多了 展开
$(function() {
//分配管理权限
$("#rblUserType input").eq(0).click(function() {
$("#tbList1").hide();
$("#tbList2").hide();
});
$("#rblUserType input").eq(1).click(function() {
$("#tbList1").show();
$("#tbList2").show();
});
$("#rblUserType input").eq(2).click(function() {
$("#tbList1").hide();
$("#tbList2").show();
});
//用户权限赋值
var typeArr = '<%=this.strType %>';
if (typeArr == 1) {
$("#tbList1").hide();
$("#tbList2").hide();
}
if (typeArr == 3) {
$("#tbList1").hide();
$("#tbList2").show();
}
var cbLevelArr = '<%=this.strLevel %>';
$("input[name='cbLevel']").each(function() {
var cllarr = "," + $(this).attr("value") + ",";
if (cbLevelArr.indexOf(cllarr) != -1) {
$(this).attr("checked", true);
}
});
});
</script>
从 // 用户权限赋值下面开始改就行了。 发太多了 展开
1个回答
展开全部
//用户权限赋值
var typeArr = '<%=this.strType %>';
if (typeArr == 1) {
document.getElementById("tbList1").style.dispaly="none";
document.getElementById("tbList2").style.dispaly="none";
}
if (typeArr == 3) {
document.getElementById("tbList1").style.dispaly="none";
document.getElementById("tbList1").style.dispaly="";
}
var cbLevelArr = '<%=this.strLevel %>';
var inputlist=document.getElementByTagName("input");
for(var i=0;i<inputlist.length;i++){
var cb=inputlist[i];
if(cb.type=="checkbox" && cb.name=="cbLevel"){
if(cbLevelArr.indexOf(","+cb.value+",")!=-1)
cb.checked=true;
}
}
这样就行了,因为不知道你的页面结构以上代码有可能会有点错误,有问题再提问我。
var typeArr = '<%=this.strType %>';
if (typeArr == 1) {
document.getElementById("tbList1").style.dispaly="none";
document.getElementById("tbList2").style.dispaly="none";
}
if (typeArr == 3) {
document.getElementById("tbList1").style.dispaly="none";
document.getElementById("tbList1").style.dispaly="";
}
var cbLevelArr = '<%=this.strLevel %>';
var inputlist=document.getElementByTagName("input");
for(var i=0;i<inputlist.length;i++){
var cb=inputlist[i];
if(cb.type=="checkbox" && cb.name=="cbLevel"){
if(cbLevelArr.indexOf(","+cb.value+",")!=-1)
cb.checked=true;
}
}
这样就行了,因为不知道你的页面结构以上代码有可能会有点错误,有问题再提问我。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询