jQuery("div")
将创建一个带有div元素的jquery对象。
同样,我们如何在Raphael js中创建“clipPath
”元素。
Raphael定义了矩形,圆形的方法。有没有像RaphaelCreateElement("clipPath")
或RaphaelCreateElement("defs")
那样会返回拉斐尔元素的方法。所以我可以做paper.add(RaphaelCreateElement("clipPath"))
。
我查看了这个How do I manipulate the SVG DOM and create elements?,但返回的元素是svg dom元素,它不喜欢所有Raphael方法。