最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

jquery - Why is Javascript returning [object Object]? - Stack Overflow

programmeradmin0浏览0评论
<script type="text/javascript">
  $("#sign_up").on('click', function() {
    $.post('./includes/ajax.php', { action: 'register' } , function(result) {
      var result = JSON.parse(result);
        if(result ) { $("#register_result") = result; document.write(result); }
    });
  });
$("#register_form").submit(function() {
  return false;
});
</script>

In the console it's returning "All inputs must be entered" - which is what I want it to return.

However, the alert is returning [object Object]. Why is this?

<script type="text/javascript">
  $("#sign_up").on('click', function() {
    $.post('./includes/ajax.php', { action: 'register' } , function(result) {
      var result = JSON.parse(result);
        if(result ) { $("#register_result") = result; document.write(result); }
    });
  });
$("#register_form").submit(function() {
  return false;
});
</script>

In the console it's returning "All inputs must be entered" - which is what I want it to return.

However, the alert is returning [object Object]. Why is this?

Share Improve this question edited Sep 1, 2013 at 21:55 John Smith asked Sep 1, 2013 at 21:42 John SmithJohn Smith 752 silver badges7 bronze badges 1
  • 5 Don't use alert() for debugging – JJJ Commented Sep 1, 2013 at 21:43
Add a ment  | 

2 Answers 2

Reset to default 10

console.log will give you a debugging view of an object.

alert will give you a string view of an object.

Objects are converted to strings by calling .toString() on them.

The default toString() function on a basic object will return "[Object object]"

First off, it seems you're trying to get JSON data back. If that's the case why not simply set dataType (the 4th parameter in the $.post function to 'json')?

Also JSON is an object and alert isn't really good at returning objects. If you're looking to debug your code, might I suggest using console.log(result)? It's much more informative and less intrusive.

发布评论

评论列表(0)

  1. 暂无评论