我試圖在用戶提交聊天時發出聲音,也會在其他人的聲音中聽到。這裏是我的代碼:Javascript + Pubnub聊天室通知
Enter Chat and press enter
<div><input id=input placeholder=you-chat-here /></div>
<code>Chat Output</code>
<div id=box></div>
<div id=pubnub pub-key=demo sub-key=demo></div>
<script src=http://cdn.pubnub.com/pubnub-3.1.min.js></script>
<script>(function(){
var box = PUBNUB.$('box'), input = PUBNUB.$('input'), channel = 'chatlllll';
PUBNUB.subscribe({
channel : channel,
callback : function(text) {
box.innerHTML =
(''+text).replace(/[<>]/g, '') + '<br>' + box.innerHTML;
}
});
PUBNUB.bind('keyup', input, function(e) {
(e.keyCode || e.charCode) === 13 && PUBNUB.publish({
playsound('http://www.aphpsite.comuv.com/sound/chat.wav')
channel : channel,
message : input.value,
x : (input.value='')
});
});
})();</script>
這就是我所擁有的。我無法添加聲音。該腳本已損壞。所以這些都不起作用。我想如果有人能解決它。
謝謝。
非常感謝。 – Djmann1013 2012-07-18 13:47:39