javascript 代码无法调用???
我是将03中的代码复制到05里的,在03里能用,但是复制到05中后出现点击按钮没有任何反应,页面下方出现 网页上有错误的提示!我是将03的项目一个页面一个页面的考到05中的.
以下是网页的代码:
<head runat="server">
<title>无标题页</title>
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.
<style type="text/css">
TABLE TR TD { FONT-SIZE: 12px }
</style>
<script type="text/javascript" language="javascript">
function createGrp(){
var _lptHide=document.getElementById("grpID");
var _lptText=document.getElementById("grpName");
if(_lptText.value!="")
{
var _lptText=document.getElementById("grpName");
var test=ManageGroup.createGrp(_lptText.value);
if(test.value!=false){
_lptHide.value=test.value;
var _ltbGrp=document.getElementById("ListBox1");
var _option=document.createElement("option");
_ltbGrp.add(_option);
_option.innerText=_lptText.value;
_option.value=test.value;
}
else{ alert("更新失败");}
}
else{ alert("请输入新组名");
}
}
function upDateGrp(){
var _lptHide=document.getElementById("grpID");
var _lptText=document.getElementById("grpName");
if(_lptHide.value!=""){
var test=ManageGroup.updateGrp(_lptText.value,_lptHide.value);
if(test.value=='true'){
var _ltbGrp=document.getElementById("ListBox1");
_ltbGrp.options[_ltbGrp.selectedIndex].text=_lptText.value;
}
}
else{alert("请选择要修改的分组");}
}
function delGrp(){
var _lptHide=document.getElementById("grpID");
var _lptText=document.getElementById("grpName");
if(_lptHide.value!=""){
//delete
var test=ManageGroup.delGrp(_lptHide.value);
if(test.value=="true"){
_lptHide.value="";
_lptText.value="";
var _ltbGrp=document.getElementById("ListBox1");
_ltbGrp.options.remove(_ltbGrp.selectedIndex);
}
else{alert("您的分组中还有客户");}
}
else{alert("请选择要删除的分组");}
}
function sltGrp(){
var _ltbGrp=document.getElementById("ListBox1");
var _lptHide=document.getElementById("grpID");
var _lptText=document.getElementById("grpName");
_lptText.value=_ltbGrp.options[_ltbGrp.selectedIndex].text;
_lptHide.value=_ltbGrp.options[_ltbGrp.selectedIndex].value;
}
</script>
</head>
<body>
<form id="Form1" method="post" runat="server">
<table>
<tr>
<td colspan="2">
当前功能:我的客户管理工作室:客户分组管理
</td>
</tr>
<tr>
<td valign="top">
<p><asp:ListBox id="ListBox1" runat="server" onchange="javascript:sltGrp();" Rows="15" Width="96px"></asp:ListBox></p>
<p><FONT face="宋体"></FONT> </p>
</td>
<td valign="top">
<table>
<tr>
<td colspan="3">分组名称:<INPUT id="grpName" type="text"></td>
</tr>
<tr>
<td colspan="3" height="12"><INPUT type="hidden" id="grpID"></td>
</tr>
<tr>
<td align="center"><INPUT type="button" value="修改" onclick="javascript:upDateGrp();"></td>
<td align="center"><INPUT type="button" value="新建" onclick="javascript:createGrp();"></td>
<td align="center"><INPUT type="button" value="删除" onclick="javascript:delGrp();"></td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</body>
</html>