在哪里可以看到這個(gè)體現(xiàn)出來(lái)的效果?怎樣看到這個(gè)300px的寬度?
<style>
? ? .content {
? ? ? ? width: 300px;
? ? }
? ? .append{
? ? ? ? background-color: blue;
? ? }
? ? .appendTo{
? ? ? ? background-color: red;
? ? }
? ? </style>
</head>
<body>
? ? <h2>通過(guò)append與appendTo添加元素</h2>
? ? <button id="bt1">點(diǎn)擊通過(guò)jQuery的append添加元素</button>
? ? <button id="bt2">點(diǎn)擊通過(guò)jQuery的appendTo添加元素</button>
? ? <div class="content"></div>
這其中的<div class="content"></div>起到什么作用了?
?.content {
? ? ? ? width: 300px;
? ? }
在哪里可以看到這個(gè)體現(xiàn)出來(lái)的效果?怎樣看到這個(gè)300px的寬度?
2016-08-25
沒(méi)有高度 你看什么東西?
2016-08-25
給.content設(shè)置一個(gè)背景色你就可以看到了