私はこれを作成しようとしています:
<label><input id=""><span>Lorem ipsum dolor</span></label>
これは私のコードです:
$('.property .includes')
    .append('<label>').html(
        $('<input>').attr('id', this.id) +
        $('<span>').html(this.description)
    );
「[オブジェクト] [オブジェクト]」と書かれているだけなので、機能していないようです。
上記のコードを作成するにはどうすればよいですか?