标签: javascript jquery raphael
我想取消设置(删除)Text对象的href属性。 怎么做?
答案 0 :(得分:1)
尝试
var paper = Raphael( 0, 0, 100, 100 ); var rect = paper.rect( 0, 0, 100, 100 ); // just set it to nothing rect.attr({ href: "" });