我有一个here网络聊天,正在尝试添加一个占位符attr,但没有任何运气。有人添加了聊天脚本。我试过使用.live处理程序时没有运气。感谢帮助
jQuery(document).ready(function () {
var chat = new jQuery.webChat({
queue: 'BAWWEBCHAT'
});
var original = chat.localize;
chat.localize = function (key) {
switch (key) {
case "MAN_HDR": return "Chat with us";
default: return original.apply(chat, arguments)
}
}
jQuery("#wc-email").attr("placeholder", "Your Email");
jQuery("body").on("click", function(event) {
chat.hideChatbox();
});
jQuery("body").on("click", ".wc-webchat", function(event) {
event.stopPropagation();
});
});