我有我需要拼寫它添加到數據庫之前檢查列表:使用jQuery更改鼠標點擊文本的最佳方式是什麼?
<table>
<tr>
<td>1-1 Some text </td> <td> 1-2Some more text</td>
</tr>
<tr>
<td>2-1 Some text </td> <td> 2-2 Some more text</td>
</tr>
<tr>
<td>3-1 Some text </td> <td> 3-2 Some more text</td>
</tr>
</table>
<button> Import list to database </button>
我的想法是這樣的,使用jQuery:
當我點擊在2-1的文本,它會被一個文本框「替換」,以便我可以編輯文本。
什麼是實現這一目標的最佳途徑?
我需要一個包含<input type="text"
字段的隱藏字段嗎? 那會是doint最簡單最優雅的方式嗎?
是的,這也是我最後總結的方法。由於內容將被提交存儲在數據庫中,因此我需要從輸入字段獲取值。所以隱藏的輸入是要走的路。 – Steven