<html>
<head>
<title>PubNub</title>
<script src="jquery.js"></script>
<script src="sample.js"></script>
<script src="https://cdn.pubnub.com/pubnub.min.js"></script>
</head>
<body onload="sample()">
<p id="memo"></p>
</body>
</html>
var a;
function sample(){
a="delta";
var PUBNUB_demo = PUBNUB.init({
publish_key: 'pub-c-f7f0615a-a8d3-42a8-83c1-6c46341a965f',
subscribe_key: 'sub-c-2e2b3e0c-8018-11e5-92ab-0619f8945a4f'
});
PUBNUB_demo.subscribe({
channel: 'demop',
message: function(m){
a=m.text;
$("#memo").html(m.text);
},
connect : publish
});
function publish() {
PUBNUB_demo.publish({
channel: 'demop',
message: {"text":a+"k"}
});
}
}
最終更新:2015年11月02日 01:24