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.
如何将 h1 中的文本转换为连字符字符串并使其成为正文中的新类?这是我到目前为止的所有内容:
var newClass = $('h1').val().replace(/ /g, '-'); $("body").addClass(newClass);
小提琴
对于h1你应该使用的元素,text而不是val,val用于获取/设置表单元素的值:
h1
text
val
var newClass = $('h1').text().replace(/\s/g, '-'); $("body").addClass(newClass);