0

我知道我的 html 很好,但是我如何使它成为一个 if else 语句。我希望文本消失并更改按钮的文本,然后再次按下按钮来反转。

这是我的代码:

    $("#disappearingButton").click(function(){

    if($("#thePara").is(":hidden")){
        $("#thePara").show();
        $("#disappearingButton").html("Click to disappear");
    }else{
        $("#thePara").hide();
        $("#disappearingButton").html("Click to reappear");
    }
});
4

2 回答 2

0

试试这个js小提琴

$(document).ready(function(){
    $("#disappearingButton").click(function(){
        $('#btheParaook').toggle(function(){
            $('#disappearingButton').text('click to appear');
        } );
    });
}); 
于 2013-06-16T03:55:27.543 回答
0
if(!$("#thePara").is(":visible")){

或者

if ($("#thePara").css("display") == "none"){
于 2013-06-16T03:13:52.333 回答