javascript FAQ函數(提問+回複)

來源:互聯網
上載者:User

效果如:當點擊問題時顯示下面的回複內容。
複製代碼 代碼如下:script type="text/javascript">
onload = function(){
faq(document.getElementsByTagName("dl")[0], "dt", "dd");
/*
* faq函數:elem是父元素,qTag是標題元素,aTag是內容元素
*/
}
function faq(elem, qTag, aTag){
aTag = aTag || "dd"; //提供預設值,下同
qTag = qTag || "dt";
elem = elem || document;
var dds = elem.getElementsByTagName(aTag);
for (var i = 0, len = dds.length; i < len; i++) {
dds[i].style.display = "none";
}
var dts = elem.getElementsByTagName(qTag);
for (var i = 0, len = dts.length; i < len; i++) {
dts[i].style.cursor = "hand";
dts[i].onclick = function(){
var next = this.nextSibling;
//獲得當前元素的下一個元素的引用
while (next.nodeType != 1) {
next = next.nextSibling;
}
if (next.style.display != "none") {
next.style.display = "none";
}
else {
next.style.display = "block";
}
}
}
}
</script>

測試代碼:<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br /><style type="text/css"> dd { background: #eee; border: 1px solid #ccc; margin-left: 2px; padding: 4px; } </style><dl><dt><b>One question:What are ready to do?</b></dt><dd>What I want to do is you,do you understand my feeling to you. </p><p>I hope you are the same to me.</dd><dt><b>Two questing:What do you want?</b></dt><dd>I want to see you now,I miss you so much,I want to see you at this moment.</dd><dt>Three question:Do you want to have a girlfriend?</dt><dd>I think everyone want it so much,me too,I want to have someone talk to me everyday.</dd></dl><p>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.