如何使用paper.add方法将特殊字符传递给URL中的javascript window.open?

时间:2012-01-30 06:45:41

标签: javascript raphael href window.open

paper.add([{
              type: "text",
               x: 340 + textLength + 28,
               y: 410,
               text: "4860",
               fill: "blue", 
                    href:"javascript:window.open('https://planning.partners.com/ep/#Create Campaign&CId=4860');void(0)"
                    }
                ]).attr({ 'font-size': 14, "font-family": "Segoe UI", "text-decoration": "underline", 'text-anchor': "start" });

上面的代码正在渲染文本(4860)并显示超链接。但是当我点击超链接时,窗口打开时显示URL“https://planning.partners.com/ep/”。跳过特殊字符#和URL的其余部分。如何使用paper.add方法将特殊字符传递给URL中的javascript window.open?

0 个答案:

没有答案