我是JavaScript新手,我需要一些幫助。我正在開發一個網站,其中我有一個按需定製的「添加治療筆記」。Javascript onclick顯示/隱藏div元素
1.如果我點擊「添加治療筆記」,相應的兩個<div>
應該打開,如果<div>
處於打開狀態「添加治療筆記」按鈕應該將文本更改爲「隱藏治療筆記」。
<div id="divpopup"><button>Add treatment notes</button></div>
2.如果單擊「隱藏處理說明」,則兩個div的數據應該隱藏起來。
<td class="ir-shade4" colspan="2">
<div id=irid1><p><em>If injured,mark location</em></p>
<img src="{{ STATIC_URL }}images/spotmarker.jpeg"/></div>
</td>
<td class="ir-shade3" colspan="2">
<div id=irid2><p>Actions</p>
<p><input id="ir-box" type="checkbox"/>01.Allowed to rest and returned to class</p>
<p><input id="ir-box" type="checkbox"/>02.Contacted parents/guardians</p>
<p><strong><em>Treatment given,or other notes</em></strong></p>
<textarea class="textarea" name="description"></textarea>
<p><input id="ir-box2" type="checkbox"/>No furthur action needed</p>
</div>
</td>
編輯:
$(document).ready(function() {
$("#divpopup").css("display", "none");
});
function addtreatment() {
var hideValue = $("#irid1").val();
var hideValue = $("#irid2").val();
var newHideValue = 0;
if (hideValue == 0) {
newHideValue = 1;
}
else
{
newHideValue = 0;
}
if (newHideValue == 0) {
$("#divpopup").css("display", "none");
}
else
{
$("#divpopup").css("display", "block");
}
$("#irid1").val(newHideValue);
$("#irid2").val(newHideValue);
return false;
}
請告訴我如何實現這在我的網頁。
感謝
你有沒有嘗試任何旁邊的HTML代碼?如果是,請發佈您嘗試的腳本。 –
Kishor,我試着用上面的代碼,但它不工作,如果我想改變一些事情,請告訴我,我想讓這個功能工作 – user2086641