我创建了一个按钮。点击它时会显示是/否确认框。我想在用户点击时隐藏按钮'是' button.My code is here
<input type="button" name='hide_button' id='hide_button' value="Hide?"onClick="return confirm_hide();">
Javascript:
function confirm_hide(){
if(confirm('Do you wish to hide the button?'))
return true;
else return false;
}
答案 0 :(得分:2)
将display
样式属性更新为none
。
function confirm_hide(ele) {
if (confirm('Do you wish to hide the button?')) {
ele.style.display = 'none';
return true;
} else return false;
}
<input type="button" name='hide_button' id='hide_button' value="Hide?" onClick="return confirm_hide(this);">
答案 1 :(得分:1)
以下代码可帮助您添加按钮元素ID inplace
function confirm_delete(){
if(confirm('Do you wish to hide the button?')){
var yesBtn = document.getElementById('yesBtn');
yesBtn.style.display = 'none';
return true;
}
else
return false;
}
答案 2 :(得分:0)
此功能可以帮助您
function confirm_hide() {
if (confirm('Do you wish to hide the button?')) {
$("#hide_button").hide();
return true;
} else return false;
}
谢谢...