我有:
<a id="save-button" href="data:application/xml;charset=utf-8,your code here" download="test.cod">Save</a>
我可以用:
更改href属性element.href = "what I want";
但是当我做的时候
element.download = "what I want";
它不起作用。
有谁知道如何更改下载属性?
由于
答案 0 :(得分:2)
The download
property is not supported widely which is still an experimental API.
使用Element#setAttribute
方法更新属性。
element.setAttribute('download', "what I want");