私はJavaScriptが初めてで、助けが必要です。「治療メモを追加」というボタンが必要なウェブサイトを開発しています。
1.「治療メモを追加」をクリックすると、対応する2つ<div>
が開き、<div>
「治療メモを追加」ボタンが開いた状態の場合、テキストが「治療メモを非表示」に変更されます。
<div id="divpopup"><button>Add treatment notes</button></div>
2.「治療メモを非表示」をクリックすると、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;
}
これをマイページに実装する方法を教えてください。
ありがとう