我在stackoverflow上看到了这个,它有效
a = document.createElement("a")
linkText = document.createTextNode("my title text")
a.appendChild linkText
a.title = "my title text"
a.href = "http://example.com"
document.body.appendChild a
我需要类似的东西,但我的问题是我使用的是这里的图表:
我需要图表的标题是一个超链接!
在我的咖啡脚本中,我有以下内容:
p5 = new JustGage(
id: p["name"]
value: p["value"]
min: 0
max: 100
title: (p["name"]).link p["url"] # My problem is here
)
现在这就是我所看到的:附上一张图片:
<a href='http://www.google.com'>test</a>
谢谢!!