有誰知道如何收聽鼠標事件,例如CLICK或HOVER,以便當我點擊或懸停任何元素時,它會在第二個瀏覽器中發生?不包括代碼的道歉。套接字io鼠標點擊事件
<script>
// creating a new websocket
var socket = io.connect('http://localhost:8000');
// on message recived we print the new data inside the #container div
socket.on('notification', function (data) {
$("p").click(function() {
alert("Hello");
//or change the color
$(this).css({"color": "red"});
});
var usersList = "<div id='aaa'>";
$.each(data.users, function (index, user) {
usersList += "<p>" + user.users + "</p>";
});
usersList += "</div>";
$('#container').html(usersList);
});
</script>
<p>Click me!</p>
3可以模擬活動。你實際上不能移動鼠標光標。什麼不適合你寫的代碼? – WiredPrairie
我不需要看到鼠標移動。只是當我點擊按鈕,我需要在這兩個瀏覽器(看到我的代碼 – medzi