我有一个带有两个提交按钮的 html 表单,其中一个已启用。如果用户正在填写表单,则提交已启用并且其他按钮已禁用。当用户单击提交按钮时,其他按钮被启用并以只读方式显示所有字段值。当单击第二个按钮时,在数据库中输入值时,可以 使用jquery或javascript
$('input[type="text"]').each(function(){
$(this).attr('readonly','readonly');
});
我有一个带有两个提交按钮的 html 表单,其中一个已启用。如果用户正在填写表单,则提交已启用并且其他按钮已禁用。当用户单击提交按钮时,其他按钮被启用并以只读方式显示所有字段值。当单击第二个按钮时,在数据库中输入值时,可以 使用jquery或javascript
$('input[type="text"]').each(function(){
$(this).attr('readonly','readonly');
});
如果我正确阅读了您的问题,第一个按钮实际上并没有提交表单?
$("#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"
,它应该是 oftype="button"
或者是一个<button>
标签。disabled
在输入字段上使用属性。如果这样做,表单提交将忽略这些字段并且不会按预期发布它们。您已经通过使用 readonly 做对了。$(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');
});
});