我的问题是:
我有一张桌子:
<table>
<tr>
<td>
<form name="intervalForm">
<input type="text" name="interval" value="5"></input>
<input type="submit" value="OK"></input>
</form>
</td>
</tr><tr>
<td>
<form name="intervalForm">
<input type="text" name="interval" value="5"></input>
<input type="submit" value="OK"></input>
</form>
</td>
</tr>
...
</table>
我的 js(mootools) 代码:
$('intervalForm').addEvent('submit', function(e) {
new Event(e).stop();
var newRequest = new Request.JSON({
url: 'ajax.php',
onRequest: function() {},
onSuccess: function(r){
if(r.status){
...do action
} else {
...error here
}
}
}).send({data: this});
});
我的 js 代码仅适用于第一行。我应该怎么做才能使它适用于其他行?谢谢。