JQueryで、 idを使用せずにセレクター$('button')
から要素に取得する方法を知りたいですか? <form>
id を使用して取得する方法は知っていますが、どういうわけか上記の方法が必要です。
alert($('button').parent().prev().get(0).nodeName)
私はそこに着いたことを意味するポップアップを試しFORM
ました。しかし、$('button').parent().prev().get(0).submit()
or.serialize()
または を使用しても.attr('name')
機能しません。
構造は次のとおりです。10行あり<tr>......</tr>
ます。
<table>
<tr><form name='form' method='POST' autocomplete='on'>
<td id='df'><button type='button'>Go</button></td>
<td><input type='reset' value='Clear'/></td>
<td><input name='date'</td>
<td><input name='customer'</td>
.......
</tr>
</table>
トラバースの専門家なら誰でも教えてくれますか?? ありがとうございます=)