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使用する必要があります。textvalval
h1
text
val
var newClass = $('h1').text().replace(/\s/g, '-'); $("body").addClass(newClass);