Jquery语法等价

时间:2014-12-15 17:58:02

标签: javascript jquery

什么是jquery相当于:

document.getElementById("roomType").innerHTML = $('#' + self.selectedLocation + '').html();

我试过这个:

  $('#roomType').html('#' + self.selectedLocation);

但我得到了这个输出:

#6

2 个答案:

答案 0 :(得分:3)

这将是:

$('#roomType').html( $('#' + self.selectedLocation).html() );

答案 1 :(得分:1)

缺少一些东西:

$('#roomType').html($('#' + self.selectedLocation).html());