嗨我在div中有一个转发器,我想将内部div(com)的高度设置为200px。虽然,我的jquery似乎不起作用。有人可以放一点光吗?感谢。
<div id="comments" style="width:480px; float:left;">
<div id="com">
<asp:Repeater ID="rptComments" runat="server" >
<ItemTemplate>
<%# Eval("COMMENTS") %>
</ItemTemplate>
</asp:Repeater>
</div>
<script type="text/javascript">
$("#comments com").css(function () {
("#comments com").height("200px");
});
</script>
答案 0 :(得分:0)
无需回拨:
$("#comments #com").css('height','200px');
答案 1 :(得分:0)
.css
不是事件触发器,您的代码中也缺少$
和#
。
试试这个:
$( document ).ready(function() {
$("#comments #com").height("200px");
//you were missing $ to begin line and # to identify com
});
<强> JS Fiddle Demo 强>
答案 2 :(得分:0)
答案 3 :(得分:-1)
您也可以使用jquery css属性。
比得到这样的东西:
$('#divName').css('height','200px');