修复tabelExport.js插件导出操作自动提交表单问题.

This commit is contained in:
zhangwenqing
2018-12-24 11:06:43 +08:00
parent 9d8786dd2e
commit fcfc7a617d
3 changed files with 7 additions and 3 deletions

View File

@@ -315,7 +315,7 @@
* @param myClass {String}
*/
function createObjButton(dataObject, myContent, myClass) {
var exportButton = "<button id='myexport' data-fileblob='" + dataObject + "' class='" + bootstrapClass + bootstrapTheme + myClass + "'>" + myContent + "</button>";
var exportButton = "<button id='myexport' type='button' data-fileblob='" + dataObject + "' class='" + bootstrapClass + bootstrapTheme + myClass + "'>" + myContent + "</button>";
checkCaption(exportButton);
}
});