我尝试使用其中一个Jquery-ui对话框按钮作为表单提交按钮。我想使用提交按钮,因为它触发HTML5的表单验证,其中form.submit()不会。 目前,我使用隐藏的提交按钮并使用单击触发器提交表单,但如果我可以使用它,那将会更加整洁。
我可以将按钮更改为submit
类型,但没有问题,但我似乎无法将form
添加到属性
由于该按钮不在表单标记内,因此我无法正确提交
期待:
<button type="submit" form='createUser' id="submit-button" everythingelse="works" foo="bar" class="ui-button ui-corner-all ui-widget">submit</button>
结果:
<button type="submit" id="submit-button" everythingelse="works" foo="bar" class="ui-button ui-corner-all ui-widget">submit</button>
我可以为按钮设置所有类型的随机内容,但出于某种原因不需要form
,我无法理解原因。
我已经阅读了博客here,似乎form
过去曾在以前版本的jquery-ui中工作,但它已不再适用了。
测试代码:
jsfiddle链接:https://jsfiddle.net/s5cjk3wr/
HTML:
<div id="dialog-form" title="Create new user">
<form id='createUser'>
<fieldset>
<label for="name">Name</label>
<input type="text" name="name" id="name" value="Jane Smith" class="text ui-widget-content ui-corner-all">
<label for="email">Email</label>
<input type="text" name="email" id="email" value="jane@smith.com" class="text ui-widget-content ui-corner-all">
<label for="password">Password</label>
<input type="password" name="password" id="password" value="xxxxxxx" class="text ui-widget-content ui-corner-all">
<input type="submit" tabindex="-1" style="position:absolute; top:-1000px">
</fieldset>
</form>
</div>
<button id="create-user">Create new user</button>
的javascript:
$( function() {
dialog = $( "#dialog-form" ).dialog({
autoOpen: false,
height: 400,
width: 350,
modal: true,
buttons: {
"Create an account": {
text:"submit",
id: "submit-button",
type: "submit",
form: "createUser",
everythingElse: "works",
foo: "bar"
},
Cancel: function() {
dialog.dialog( "close" );
}
}
});
form = dialog.find( "form" ).on( "submit", function( event ) {
event.preventDefault();
});
$( "#create-user" ).button().on( "click", function() {
dialog.dialog( "open" );
});
});
CSS
label, input { display:block; }
input.text { margin-bottom:12px; width:95%; padding: .4em; }
fieldset { padding:0; border:0; margin-top:25px; }
h1 { font-size: 1.2em; margin: .6em 0; }
div#users-contain { width: 350px; margin: 20px 0; }
div#users-contain table { margin: 1em 0; border-collapse: collapse; width: 100%; }
div#users-contain table td, div#users-contain table th { border: 1px solid #eee; padding: .6em 10px; text-align: left; }
.ui-dialog .ui-state-error { padding: .3em; }
.validateTips { border: 1px solid transparent; padding: 0.3em; }
答案 0 :(得分:0)
为什么不附加单击时提交表单的功能,如下所示。
buttons: {
"Create an account": function(){$('#createUser').submit()},
Cancel: function() {
dialog.dialog( "close" );
}