我在下表中有数据。单击后,我希望表格单元格转换为a
字段。之后,temp
的{{1}}及其<input/>
的值通过value
请求发送。
有可能吗?
这里我已经写了一些代码行,但是它返回了<input/>
的{{1}}。但是我还需要id
中的ajax
。
例如:
value
这是javascript
inputfield
id
的值即将到来。但是我还需要table cell where I click
。
答案 0 :(得分:0)
您可以在attr
上使用$elm
方法来访问其id
$el.attr('id')
答案 1 :(得分:0)
在您的td标签或-th-
中使用contenteditable属性<td contenteditable id="id" class="class" data-id="103">Testing</td>
<script>
var html_value = $('#id').html();
var id = $('#id').attr("data-id");
</script>