The*_*ner 2 html javascript css
我想知道如何用另一个功能禁用一个功能。我有一个要求额外课程作业的表格,但如果用户尚未完成任何额外作业,则会隐藏输入。我想设置一个故障保护装置,以防他们删除一组输入并改变主意。
我需要帮助的是编写故障安全函数来检查:如果函数 1 发生,则禁用它。
代码笔: http: //codepen.io/theodore_steiner/pen/ORzpQQ
function hideCourseWork() {
var otherEducationHistory = document.getElementById("otherEducationHistory");
otherEducationHistory.style.display = "none";
if (otherEducationHistory.style.display == "none") {
var noAdditionalCourseWork = document.getElementById("noAdditionalCourseWork");
var checkNo = document.getElementById("checkNo");
var undo = document.getElementById("undoNoAdditionalCourseWork");
noAdditionalCourseWork.style.top = "-48px";
checkNo.style.top = "-65px";
undo.style.top = "-65px";
undo.style.top = "-63px";
}
};Run Code Online (Sandbox Code Playgroud)
<div class="input-group" id="other-education">
<p class="subtitleDirection">Please list in chronological order, any additional cources beyond the degree(s) listed above, including any Ministry of Education Courses. If you have not completed any additional course work, please indicate.</p>
<div class="clearFix"></div>
<label id="otherEducation">Additional Courses*</label>
<div id="otherEducationHistory">
<input type="text" class="three-lines" name="otherUniversity_1" placeholder="Institution" onblur="this.placeholder='Institution'" onfocus="this.placeholder=''" />
<input type="text" class="three-lines" name="otherDegree_1" placeholder="Degree/Diploma" onblur="this.placeholder='Degree/Diploma'" />
<input type="date" class="three-lines" name="otherEducationYear_1" />
<input type="button" value="+" onclick=addOtherEducation() />
</div>
<!--end of otherEducationHistory div-->
<div class="clearFix"></div>
</div>
<!--end of other-education div-->
<p id="noAdditionalCourseWork">I have not completed any additional course work.</p>
<input type="radio" name="checkNo" id="checkNo" onclick="hideCourseWork()" />
<br />
<p id="undoNoAdditionalCourseWork" onclick="reAddCourseWork()">(Undo).</p>Run Code Online (Sandbox Code Playgroud)
小智 5
你对你的问题不太清楚,但这也许会有所帮助。
函数与变量有点相同。它们可以重新分配(例如,分配给空函数)..
function doSomething(){
alert("didSomething");
}
function disableDoSomething(){
window.doSomething = function(){};
}
Run Code Online (Sandbox Code Playgroud)
如果您希望稍后能够重新启用该功能,您可以执行以下操作...
function doSomething(){
alert("didSomething");
}
var functionHolder;
function disableDoSomething(){
if(!functionHolder) functionHolder = window.doSomething;
window.doSomething = function(){};
}
function enableDoSomething(){
window.doSomething = functionHolder;
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
5043 次 |
| 最近记录: |