Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以通过设置在大多数浏览器中工作的 css 类来突出显示选定的连接。我试图添加一个使用过滤器创建“投影”的类,但它只适用于 chrome。
当单击(选择)连接时,您可以修改其属性,因为我通过 setPaintStyle 函数更改了连接的颜色。有关更多此类功能,请参阅API 文档
jsPlumb.bind('click', function (connection, e) { connection.setPaintStyle({fillStyle:'red'}); });