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.
我将文本附加到 div 中
span.insertBefore("#text");
这里 span 表示正在附加的文本。我怎样才能获得任何其他事件的文本,如按钮单击等。
您需要使用选择器使用 jquery 元素的text()函数
txt = $("#text").text(); //id selector txt = $('.classOfElement').text() //class selector
您还可以使用 javascript 获取文本,例如:
var text = document.getElementById('#text').innerHtml();