0

我正在开发一个 MVC 应用程序,但下面的代码有一些问题:

function create(box) {
       var box = dhtmlx.modalbox({
       title: "New PDF Document",
       text: "<div id='form_in_box'><div>Create a new PDF Documnet<hr /><label>Page Count:   <select name='pagecount'><option>1</option><option>2</option></select><label>Page Size:   <select><option>Letter</option><option>A4</option></select></label><span class='dhtmlx_button'><input type='button' value='Create' style='width: 86px' onclick='create_file(this)'></span><span class='dhtmlx_button'><input type='button' value='Cancel' onclick='close_file(this)' style='width:80px;'></span></label></div>",
       width: "300px"
       });  

function create_file(box) {
      $.post("/FileUpload/CreatePDFile.aspx");

每当用户单击创建按钮时,应该会出现“创建 PDF”页面。上面的代码适用于取消按钮,但不适用于创建按钮。

4

1 回答 1

0

jQuerypost函数将表单发布到传入的 URL(通过 AJAX),但不会将浏览器重定向到新文件。你说'应该出现“创建 PDF”页面'。

post功能不会显示新页面。

如果您必须将表单数据发送回 createPDFile.aspx 文件,您应该将输入字段包装在表单中。将表单操作设置为 /FileUpload/CreatePDFile.aspx 页面,并$("#formname").submit()在 create_file 函数中提交表单(通过函数)。

请参阅: jQuery.post()jQuery.submit()

于 2013-03-15T11:25:18.977 回答