我正在尝试从 asp.net 页面中协调鼠标以在服务器“TextBox”上运行。
jQuery(document).ready(function () {
$(document).mousemove(function (e) {
$('#status').html(e.pageX + ', ' + e.pageY);
});
})
在职的
<h2 id="status">
0, 0
</h2>
需要
<asp:TextBox ID="status" runat="server"></asp:TextBox>
而且我无法理解错误在哪里以及为什么不起作用。