css: #showGo{display:none;} js(引入jQuery): setTimeout(function(){ $("#showGo").show("slow"); },3000);
創(chuàng)新互聯(lián)公司服務(wù)項目包括遂川網(wǎng)站建設(shè)、遂川網(wǎng)站制作、遂川網(wǎng)頁制作以及遂川網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,遂川網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到遂川省份的部分城市,未來相信會繼續(xù)擴大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
$("#dc div")意思為查找id值為dc這個容器中所有的div標(biāo)簽
這個就是一個層級的概念了
$("#dcdiv:first")這個就是說查找id值為dc這個容器中的直接div標(biāo)簽(不包括其他標(biāo)簽內(nèi)部的div標(biāo)簽)
同時,咱們能看到還有一個:first,這個就是說只定位到第一個div標(biāo)簽上面
div id="dc"
div name="1"/div
div name="2"
div name="3"/div
/div
/div
$("#dc div")要使用這個查找的話,他就能找到name=1 2 3這三個div
$("#dcdiv")要使用這個查找的話,他就能找到name=1 2這兩個div
$("#dcdiv:first")要是使用這個查找的話,他就只能找到 name=1的這個div了
您說的$("#dcdiv")或$("#dc=div")這兩種方法就是沒有的了,
因為在這里不是一個比較運算符,
工具:網(wǎng)頁調(diào)試工具如火狐firebug,還有谷歌自帶的前端調(diào)試叫什么忘記了,
打開網(wǎng)頁,F(xiàn)12 進入調(diào)試,查看元素 ,鼠標(biāo)移上去看就知道了,比如你這張圖片在這個網(wǎng)頁是這樣的img class="ikqb_img" src="" esrc=""
!DOCTYPE?HTML
html
head
meta?charset="UTF-8"?/
titlemain.html/title
style?type="text/css"
table?{
width:?100%;
border:?1px?solid?black;
border-collapse:?collapse;
}
td,th?{
border:?1px?solid?black;
}
/style
script?type="text/javascript"?src="jquery-1.8.0.min.js"/script
script?type="text/javascript"
$?(function?()
{
var?tbody?=?$?('tbody');
$?('#add').click?(function?()
{
$?('tbody?tr:not(:contains("作者"))').each?(function?(i,?dom)
{
tbody.append?($?(this).clone?());
});
});
});
/script
/head
body
table
tbody?id="picture"
tr
th作者?:/th
td
ul
liinput?style="width:?500px;"?type="text"?name="author[]"?class="input-text"?size="60"?maxlength="200"?value=""?/
/li
/ul/td
/tr
tr
th圖文標(biāo)題?:/th
td
ul
liinput?style="width:?500px;"?type="text"?name="title[]"?class="input-text"?size="60"?maxlength="200"?value=""?/
/li
/ul/td
/tr
tr
th閱讀原文鏈接?:/th
td
ul
liinput?style="width:?500px;"?type="text"?name="content_source_url[]"?class="input-text"?size="60"?maxlength="200"?value=""?/
/li
/ul/td
/tr
tr
th圖文內(nèi)容?:/th
td
ul
litextarea?style="width:?500px;?b?height:?50px;"?name="content[]"?class="input-text"?rows="2"?cols="56"/textarea
/li
/ul/td
/tr
tr
th圖文圖片?:/th
td
ul
liinput?type='file'?name='pic[]'
/li
/ul/td
/tr
/tbody
/table
div?class="bk15"/div
div?class="btn"
input?type="hidden"?name="formhash"?value="404446c9a547d166"?/?input?type="button"?id="add"?name="action"?value="添加"
style="visibility:?visible;?margin-left:?350px;?background-color:?#004499;?border:?none;?width:?55px;?height:?28px;?color:?#fff;?margin-top:?30px;"?/
/div
/body
/html