我对 javascript 很陌生,我正在尝试更改下面元素内的文本,但它不起作用。
<div id='text'></div>
下面是我正在使用的代码。该console.log行有效,但 text() 函数无效。
d3.json('/data', function(error, closure_data) {
$('.dropdown-item').click(function() {
if ($(this).attr('value') == '1') {
console.log('1')
text = d3.select('#text')
$(text).text('1');
}
});
})
呼唤远方
守着星空守着你
相关分类