我有一个带有两个提交按钮的html表单,其中一个已启用。如果用户正在填写表单,则启用提交,另一个按钮被激活。 当用户点击提交按钮时,其他按钮被启用并显示所有字段值只读。当点击第二个按钮时,数据输入数据库,使用 jquery 或 javascript 是否有可能
$('input[type="text"]').each(function(){
$(this).attr('readonly','readonly');
});
答案 0 :(得分:1)
如果我正确阅读了您的问题,第一个按钮实际上并未提交表单?
$("#firstbutton").click(function() {
$("#myForm input").attr("readonly", "readonly"); //this makes the input fields readonly
$("#secondbutton").attr("disabled","disabled"; //this enable the second button
$(this).removeAttr('disabled'); //this disables the #firstbutton
}
确保:
<input>
,而是<select>
项目。type="submit"
,它应该是type="button"
或者是<button>
标记。disabled
属性。如果您这样做,表单提交将忽略这些字段,而不是按预期发布。你已经通过readonly使用了。答案 1 :(得分:0)
$(document).ready(function(){
$('#myForm').submit(function(e){
e.preventDefault();
$myForm = $(this);
$myForm.find('input[type=submit]').attr('disabled','disabled');
$myForm.find('input#other-button').attr('enabled','enabled');
//do a $.post request
$.post('/path/to/my-file.php',
$myForm.serialize(),
function(data){
// make something after the post is complete
$myForm.find("input[type=text]").attr('readonly','readonly');
},
'json');
});
});