我在頁面中有幾個單選按鈕,我需要保存它們的值或任何值被選擇到文件。Javascript/JQuery將值保存到文件
下面是一個示例代碼:
<input name="select" type="radio" value="a" />
<input name="select" type="radio" value="b" />
<input name="select" type="radio" value="c" />
<input name="select" type="radio" value="d" />
每當用戶選擇一個我需要它保存/所附到文件中。
可能嗎?
UPDATE:
嘗試這樣:
<script>
$(document).ready(function() {
$("input[name='select']").change(function(e) {
e.preventDefault();
$.post("zzz.html", { selectedValue : $(this).val() }, function(response) {
// do something with server response
alert('saved');
});
});
});
</script>
結果:無結果。沒有創建/沒有保存。
在服務器上?在客戶端?哪裏? – karim79