如何使用户从网站导出设计

时间:2018-07-03 06:05:34

标签: javascript html5

用户可以在站点中设计内容,并根据需要将项目导出为HTML。如何让用户以html格式下载设计?

1 个答案:

答案 0 :(得分:0)

不确定您的意思,但是如果将设计内容放入div中。您可以以html格式下载该div。

module.exports = function(sequelize, DataTypes) {
    return sequelize.define('customer', {
      idcustomer: {
        type: DataTypes.INTEGER(11),
        allowNull: false,
        primaryKey: true,
        autoIncrement: true
      },
      customername: {
        type: aDataTypes.STRING(45),
        allowNull: true
      },
    }, {
      tableName: 'customer',
      underscored: true
    });
  };
function download(){
    var a = document.body.appendChild(
        document.createElement("a")
    );
    a.download = "export.html";
    a.href = "data:text/html," + document.getElementById("content").innerHTML;
    a.click();
}

像这样的小提琴

http://jsfiddle.net/evx9stLb/

因此

HTML button to save div content using javascript