这是我的 html 表单:
<form name="input" action="html_form_action.asp" method="get">
<input type="checkbox" id="mycheckbox">Don't show me again<br>
<input type="submit" id="Submit">
</form>
我有一个表,叫做:“mytable”。此表包含:名称(字符串)、框(布尔值)。
我尝试做下一件事:当用户选中 的框时don't show me again
,我想更新表格的框(假设 id=6 的行)。
ps 表格的框初始化为 False。
所以我必须做类似的事情:
$("#submit").click(function() {
if($("#mycheckbox").is(':checked')) {
//here I have to update the table in the database
}
});
我怎样才能做到这一点?
我找到了 php 的例子,但我不想用 php 来做。
更新:
根据你的回答,我想用 Ruby-on-rails 来做。
我找到了这个:
update_sql = "update mytable set box = TRUE where id = 6"
affected_rows = Job.connection.update(update_sql)
任何帮助表示赞赏!