一个页面有多个button,通过
- JScript code
var y = t.find("tr :button");
- JScript code
y.get(0).val();
------解决方案--------------------
button没有value
input type="button" 才有value
------解决方案--------------------
y.get(0).value
或者
y.eq(0).val()
var y = t.find("tr :button");
y.get(0).val();