当前位置: 技术问答>java相关
求助,jsp中用到的html语言的含义
来源: 互联网 发布时间:2015-11-04
本文导语: 因为最近要写jsp,需要用到html,但是我不太懂。希望有这方面文档的朋友帮我一把。分数没有问题。100够吗? | 规则信息 var last_tr,last_radio; function go_add(){ window.open("./balance_ruleadd.jsp",...
因为最近要写jsp,需要用到html,但是我不太懂。希望有这方面文档的朋友帮我一把。分数没有问题。100够吗?
|
规则信息
var last_tr,last_radio;
function go_add(){
window.open("./balance_ruleadd.jsp","balance_rule_fram_edit");
}
function go_edit(){
if (this.value_ruleno.value==0) {
alert("您没有选择要修改的规则!");}
else{
var data_str1="./balance_ruleedit.jsp?ruleno="+this.value_ruleno.value;
window.open(data_str1,"balance_rule_fram_edit");}
}
function go_del(){
if (this.value_ruleno.value==0) {
alert("您没有选择要删除的规则!");}
else{
if(confirm('确定要删除此规则吗?'))
{
var data_str2="./balance_rule_del.jsp?ruleno="+this.value_ruleno.value;
window.open(data_str2,"balance_rule_fram_edit");
}
}
}
function do_choose(row_td,row_rd,id_value){
if (last_tr!=null||last_radio!=null)
{
last_tr.style.background='#ffffff';
last_radio.checked=false;
}
row_td.style.background='#C8C8E3';
row_rd.checked=true;
last_tr = row_td;
last_radio = row_rd;
if (row_rd.checked) {
this.value_ruleno.value=id_value;
go_edit();
}
}
标记
规则编号
规则描述
系统实现