var str = win.split('|');
$("#txtpanel1").val(str[1]);
$("#txtpanel2").val(str[2]);
$("#txtpanel3").val(str[3]);
$("#txtpanel4").val(str[4]);
我的JS获取到了传输的值后,这样对
<asp:TextBox ID="txtpanel2" runat="server" style="background-color: #ffffc0;" Width="172px" BorderStyle="None" ></asp:TextBox>
为什么失败了
alert一下str[1]str[2]str[3]str[4]这里面的值
首先,你看下你的win是啥,另外,索引都是从0开始,还有,asp.net的id如果默认的,一般是跟clientid一致,但是特殊情况有不一致的情况
刷新好了,,。