如何使用javascript更改html中标记的属性

时间:2016-11-29 18:49:15

标签: javascript html

我有:

<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";

它不起作用。

有谁知道如何更改下载属性?

由于

1 个答案:

答案 0 :(得分:2)

The download property is not supported widely which is still an experimental API.

使用Element#setAttribute方法更新属性。

element.setAttribute('download', "what I want");