我不確定更改方法是否正確使用。我想要的是,如果複選框被點擊(選中),textarea的html是var 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。用你的例子做一個jsfiddle,然後我會幫你 –