jQuery Hide&显示表格

时间:2012-10-13 00:37:15

标签: javascript jquery forms hide

我创建了一个链接,当点击弹出窗口并显示“联系表单”时。它打开,验证,提交和电子邮件很好。当我试图关闭表格时,我遇到了问题。

HTML

<div id="blanket"><div id="myForm">
    <p style="text-align:right; margin: 0; padding: 0;"><a href="#" id="close" onClick="onClickClose();">Close</a></p>
    <table width="400" border="0" cellspacing="0" cellpadding="5"><tr><td>
    <form name="form1" method="POST" action="_sendmail.php" onSubmit="return CheckAll(this);">
    <input name="fieldnm_1" type="radio" value="M." /> M. 
    <input name="fieldnm_1" type="radio" value="Mme" /> Mme. 
</td></tr><tr><td width="400">
    <input name="fieldnm_2" type="text" id="left_form" placeholder="Pr&eacute;nom *" tabindex="1"/><input name="fieldnm_4" type="text" id="right_form" placeholder="Courriel *" tabindex="3"/>
</td></tr><tr><td width="400">
    <input name="fieldnm_3" type="text" id="left_form" placeholder="Nom *" tabindex="2"/>
    <input name="fieldnm_5" type="text" id="right_form" placeholder="T&eacute;l&eacute;phone *" tabindex="4"/>
</td></tr><tr><td width="400">
    <select name="fieldnm_7" id="left_list" >
    <option value="">Nombre de chambres *</option>
    <option value="1">1</option>
    <option value="2">2</option>
    <option value="3">3</option>
</select>
    <select name="fieldnm_8" id="right_list">
    <option value="">Nombre de pieds carr&eacute;s</option>
    <option value="600-800">600-800</option>
    <option value="800-1000">800-1000</option>
    <option value="1000-1250">1000-1250</option>
    <option value="Plus de 1250">Plus de 1250</option>
    </select>
</td></tr><tr><td>
    <textarea name="fieldnm_9" id="comment" placeholder="Commentaire*" tabindex="5"></textarea>
</td></tr><tr><td>
    <input type="submit" name="Submit" value="Soumettre" tabindex="6">
<input type="reset" name="Submit2" value="Reset">
</td></tr></table></form></div>
</div>

JS

<script type="text/javascript">
onClickRegister = function(){
    b = $("#blanket");
    b.css("display","block");
    b.css("position","fixed");
    b.css("width", window.innerWidth);
    b.css("height", window.innerHeight);
    b.css("background-color", "rgba(0, 0, 0, 0.7)");
    f=$("#myForm");
    f.css("position", "fixed");
    f.css("top", "33%");
    f.css("left", "33%");
}
window.onResize(function(){
    if($("#blanket").length>0){
        b.css("width", window.innerWidth);
        b.css("height", window.innerHeight);
    }
});
onClickClose = function(){
    $("#blanket").css("display","none");
}
</script>

我甚至尝试过向onClickClose添加警报,但没有任何反应。

4 个答案:

答案 0 :(得分:12)

您可以使用:

function onClickClose(){
    $("#blanket").hide();
}

*如果您不希望JQuery在其缓存中保存稍后要恢复的显示属性的值(如文档here所示),您可以使用:

function onClickClose(){
    $("#blanket").css("display","none");
}

答案 1 :(得分:3)

$("#close").click(function() {
 $("#blanket").hide();
});

答案 2 :(得分:1)

实际上,问题不在于onClickClose,而在此之前就是window.onResize()。它应该是window.onresize,没有驼峰大小写,它不是一个函数,而是一个事件处理程序。你应该拥有什么

window.onresize = function () {
    if ($("#blanket").length > 0) {
        b.css("width", window.innerWidth);
        b.css("height", window.innerHeight);
    }
};

您使用它的方式导致错误,随后onClickClose函数未被解析。在MDN上阅读所有相关内容。

PbxMan的回答之所以有效,是因为提升。通过将它从函数表达式更改为函数声明,该函数将被提升到顶部 范围,所以 在错误发生之前解析。因此,虽然它有效,但它实际上是在解决实际问题。

Angus Croll在函数声明与函数表达式和提升方面有很好的帖子。

答案 3 :(得分:0)

$('#close').click(
function(abc){
    $("#blanket").css("display","none");
abc.preventDefault(); // this will cancel the default action for href
}