Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将 jquery 变量附加到 div 中。当我单击带有 id #g 的按钮时,会在我的 div 中显示。
$(document).ready(function() { $("#g").click(function() { var n = $('#g').val(); $('#sentence')append('n'); }); });
关
$('#sentence').append(n);
删除变量周围的引号。此外,您在.选择器和append
.
append
删除''周围的n(你之前忘记了.append)
''
n
$("#g").click(function() { var n = $('#g').val(); $('#sentence').append(n); });
你可能有一个错字。尝试这个: