input 同时有onclick onserverclick 时无法用 。。。我以前用的好好的 不知道为什么那个页面突然就不好用了。<input type="button" id="toubiao_bu2" name="toubiao_bu2" value="" runat="server" onclick="return mtest()" onserverclick="toubiao_bu2_Click"/>2个事件都有的时候不好用 只有一个的时候运行没有问题 2个一起就没有反应了求解决 其他页面都好就这个不行 求解决啊
2 回答
手掌心
TA贡献1942条经验 获得超3个赞
把:
<input type="button" id="toubiao_bu2" name="toubiao_bu2" value="" runat="server" onclick="return mtest()" onserverclick="toubiao_bu2_Click"/>
修改为:
<input type="button" id="toubiao_bu2" name="toubiao_bu2" value="" runat="server" onclick="if(!mtest()) return false;" onserverclick="toubiao_bu2_Click"/>
看下结果。这样应该能通过。
无论我修改这个是否能通过,你都应该想想我为什么看了你的输出后就这样去修改。
- 2 回答
- 0 关注
- 433 浏览
添加回答
举报
0/150
提交
取消