我在页面底部有一个 div:
<div id="stickyplayer">Loading..</div>
在同一页面的其他地方:
<a onclick="$('#stickyplayer').html('Foobar')" href="javascript:void(0);">Select</a>
点击链接什么都不做。一个
$(document).ready(function() {
$('#stickyplayer').html('Foobar');
});
也不起作用。
jQuery 确实包含在页面中。这里有什么问题?