你是想做成弹窗客服这种吧,这个我好像搞过,应该是vocechat吧。有20人限制的,而且好像是闭源的。其实不太建议弄,真想弄的话,直接javascript,把IP换成你自己的服务器IP就可以了。- const widget = document.createElement("script");
- widget.setAttribute("data-host-id", "1");
- widget.setAttribute("data-theme-color", "#1fe1f9");
- widget.setAttribute("data-close-width", "28");
- widget.setAttribute("data-close-height", "28");
- widget.setAttribute("data-open-width", "380");
- widget.setAttribute("data-open-height", "680");
- widget.setAttribute("data-welcome", "您好,请描述您的问题");
- widget.setAttribute("src", "http://192.168.1.101:3009/widget.js");
- widget.setAttribute("async", "");
- document.body.appendChild(widget);
复制代码 |