jQuery - 使用 jquery tmpl 的实时方法
我使用 jQuery tmpl 插件将行附加到表中。 每行对应三个输入字段和一个“保存”链接。 保存我检测到的链接:
$(".saveClick").live('click',function(){
// 1. get 3 values for the row in question (stuck here)
// 2. process values via ajax (no problems here)
// 3. create new row from template (no problems here)
});
我可以使用 AJAX 来处理这些值,我只是不知道访问这些值的最佳方式是什么?
任何建议都会很好。
谢谢
编辑:
澄清 HTML:
<table id=inputTable>
<tr>
<td>cola</td>
<td>colb</td>
<td>colc</td>
<td> </td>
</tr>
</table>
jQuery 模板:
<script id="tmplAddRow" type="text/x-jquery-tmpl">
<tr>
<td><input id="inA"></td>
<td><input id="inB"></td>
<td><input id="inC"></td>
</tr>
</script>
I'm appending rows to a table using the jQuery tmpl plugin.
Each row corresponds to three input fields, and a 'save' link.
Save links I'm detecting using:
$(".saveClick").live('click',function(){
// 1. get 3 values for the row in question (stuck here)
// 2. process values via ajax (no problems here)
// 3. create new row from template (no problems here)
});
I can do the AJAX stuff to process the values, I just don't know what's the best way to access the values?
Any advice would be swell.
Thanks
Edit:
for clarification HTML:
<table id=inputTable>
<tr>
<td>cola</td>
<td>colb</td>
<td>colc</td>
<td> </td>
</tr>
</table>
jQuery Template:
<script id="tmplAddRow" type="text/x-jquery-tmpl">
<tr>
<td><input id="inA"></td>
<td><input id="inB"></td>
<td><input id="inC"></td>
</tr>
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
所以看来您的问题确实是:“如何访问表格单元格值?”
之前有人问过这个问题,因此您可以在 如何使用 jQuery 获取表格单元格值?。
So it seems that your question is really: "How can I access table cell values?"
That was asked before, so you can find the answer at How to get a table cell value using jQuery?.
如果您使用表格,您可以“返回”直到保存链接所在行的相对位置,然后您可以找到字段
if you use a table you can "return" up until relative at the row of your save link and after you can find the fields
例子:
example: