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 中的任何内容中获取 var 的值(jQuery)?我认为.load()可能需要在这里使用,但我不确定如何使用它。
.load()
var product_name = '#title';
谢谢。
var product_name = $('#title').html();
这里的标题是 div 的 id
.html() 描述:获取匹配元素集中第一个元素的 HTML 内容。
var product_name = $('selector').html();
其中选择器是您想要的任何选择器。