主题: 求助,用jquery-ui-dialog怎么提交表单
作者: xqm5260, 发布日期: 2013-07-30 14:26:47, 浏览数: 5603
 	
<div id="dialog-form" title="添加">
</br>
	<form name="example" id="example" action="${pageContext.request.contextPath}/excavation/addNotice.wz?title="+title+"&contents="+contents method="post">
	<fieldset>
		公告标题:
		<input type="text" style="width:300px" id="title" name="title" >
  			<br></br>
		<label>公告内容:</label>
		<br></br>
		<textarea id="contents" name="contents" style="width:100%;height:240px;"></textarea>
	</fieldset>
	</form>
</div>


script:


$(function() {
 		var t = $( "#title" );
		var	c = $( "#contents" );
		
		var	allFields = $( [] ).add( t ).add( c );
 		$( "#dialog-form" ).dialog({
			autoOpen: false,
			height: 450,
			width: 750,
			modal: true,
			open : function(event, ui) {
				// 打开Dialog后创建编辑器
				KindEditor.create('textarea[name="contents"]', {
					resizeType : 1
				});
			},
			buttons: {
				"确定": function() {
					allFields.removeClass( "ui-state-error" );
					var title = t.val();
					var contents = c.val();
					
					if(title==""){
						alert("公告标题不能为空,请重新输入!")
						return false;
					}
					alert(title);
					alert(contents);
					$('#example').submit();
					$( this ).dialog( "close" );
				},
				"关闭": function() {
					$( this ).dialog( "close" );
				}
			},
			close: function() {
				allFields.val( "" ).removeClass( "ui-state-error" );
			}
	});
作者: xqm5260, 发布日期: 2013-07-30 14:28:33
怎么找 编辑器里边的值。。。 title可以取到 但是  textarea里面 怎么取 怎么把这个编辑器放到buttons里面  然后提交了?  还是怎么弄。。。求助啊
回复
作者: xqm5260, 发布日期: 2013-07-30 15:49:36
没人 解答么。。。 或者加QQ  393930303  谢谢了
回复
发表新帖 发表回复