<body>
<div class="container">
Input
<form class="form-inline" role="form">
<div class="form-group">
<input type="text" class="form-control" id="getString" placeholder="Enter some string">
</div>
<button type="button" class="btn btn-primary" id="nowBtn">Now</button>
</form>
<br/>
<br/>
All Headings<textarea class="form-control" rows="6"></textarea>
</div>
</body>
私はブートストラップを使用しており、[Now] ボタンが押されたときにフォームに文字列を指定します。
テキストエリアでその文字列のタグを取得する必要があり<h1>
ます(つまり<h1>some string</h1>
、タグが適用されたテキストエリアで<h1>
)。
それは達成可能ですか?jQueryを使いたい。