jquery - div elements not updating with javascript - Stack Overflow

Can any of you see why the div (#wele) is not being updated in the below code?function show_logged_in(s

Can any of you see why the div (#wele) is not being updated in the below code?

function show_logged_in(success)
{

    var is_logged_in = success;

    var dataString = {"reg":invalid, "login":invalid,"is_logged_in":is_logged_in};

    $.ajax({
        type:"POST",
        url:"PHP/class.ajax.php",
        data:dataString,
        dataType:'JSON',
        success: function(username) {
            alert("User is shown");
            user = username;
            change_div();
        },
        error: function() {
            alert("ERROR in show_logged_in")
        }
    });

function change_div(){
    $('#wele').style.display = 'block';
    $('#wele').innerHTML = "Wele" + user + "to SIK";
    }

}

The response from the ajax called is simply grabbing the username from the session variable. and it is returning correctly.

And when it returns i would like the div to show up and say wele. But for some reason the div is not being updated.

Here is the html:

<div id="wele" style="display:none; postion:absolute; top:0; float:right;">...</div>

Can any of you see why the div (#wele) is not being updated in the below code?

function show_logged_in(success)
{

    var is_logged_in = success;

    var dataString = {"reg":invalid, "login":invalid,"is_logged_in":is_logged_in};

    $.ajax({
        type:"POST",
        url:"PHP/class.ajax.php",
        data:dataString,
        dataType:'JSON',
        success: function(username) {
            alert("User is shown");
            user = username;
            change_div();
        },
        error: function() {
            alert("ERROR in show_logged_in")
        }
    });

function change_div(){
    $('#wele').style.display = 'block';
    $('#wele').innerHTML = "Wele" + user + "to SIK";
    }

}

The response from the ajax called is simply grabbing the username from the session variable. and it is returning correctly.

And when it returns i would like the div to show up and say wele. But for some reason the div is not being updated.

Here is the html:

<div id="wele" style="display:none; postion:absolute; top:0; float:right;">...</div>

Share Improve this question edited Mar 20, 2013 at 18:42 Greg 4791 gold badge5 silver badges21 bronze badges asked Mar 20, 2013 at 11:57 Tom BurmanTom Burman 9573 gold badges16 silver badges37 bronze badges
Add a ment  | 

5 Answers 5

Reset to default 5

You can't do

$('#wele').style.display = 'block';
$('#wele').innerHTML = "Wele" + user + "to SIK";

with jquery. This is because with $('#wele') you are grabbing the jQuery object, not the DOM element.

To do this with jQuery:

$('#wele').html('Wele' + user + 'to SIK').show(); // Brought up in ments

$('#wele').show(); // Old
$('#wele').html('Wele' + user + 'to SIK'); // Old

Or if you really want to grab the DOM Element:

$('#wele')[0].style.display = 'block';
$('#wele')[0].innerHTML = "Wele" + user + "to SIK";

@Jeff Shaver is right but Pass user as argument change_div(user);

then

function change_div(user){
       $('#wele').show();
       $('#wele').html('Wele' + user + 'to SIK');
}

try this friend..

$.ajax({
        type:"POST",
        url:"PHP/class.ajax.php",
        data:dataString,
        dataType:'JSON',
        success: function(username) {
            alert("User is shown");
            user = username;
            change_div(user);
        },
        error: function() {
            alert("ERROR in show_logged_in")
        }
    });

function change_div(user){
    $('#wele').css("display","inline");
    $('#wele').append("Wele" + user + "to SIK");
    }

The display property does not exist.

$('#wele').style.display = 'block';

Use this instead:

$('#wele').css({"display":"block"});

I'd stick to pure JS with this code.

var wele = document.getElementById('wele');

function change_div(){
    wele.innerHTML = "Wele" + user + "to SIK";
    wele.style.display = 'block';
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743623734a4480196.html

相关推荐

  • jquery - div elements not updating with javascript - Stack Overflow

    Can any of you see why the div (#wele) is not being updated in the below code?function show_logged_in(s

    20小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信