変更方法が正しいかどうかわかりません。私がしたいのは、チェックボックスがクリックされている(チェックされている)場合、textareaのhtmlが2であり、チェックボックスがオフの場合、textareaのhtmlはvarです。どのように私はこれを達成するのですか?jQueryチェックボックスの変更
<script type="text/javascript">
$(function() {
$('.image').change(function() {
var one='type information here';
var two='type url here';
if($('.information').html=='type information here') {
$('.information').html('type url here');
} else {
$('.information').html('type information here');
}
});
});
</script>
<input type="checkbox" class="image"/>
<textarea class="information">type information here</textarea>
jsfiddleを使用する必要があります。あなたの例を使ってあなたの例を作ってください。そして、私はあなたを助けるでしょう –