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

javascript - Why can't you stringify a jQuery object? - Stack Overflow

programmeradmin1浏览0评论

The line JSON.stringify( $("p") ); causes an error:

InvalidStateError: Failed to read the 'selectionDirection' property from 'HTMLInputElement': The input element's type ('button') does not support selection.

(I'm using Google Chrome 34)

Why?

How else should I make $("p") more portable so I can store it or pass it in a message?

The line JSON.stringify( $("p") ); causes an error:

InvalidStateError: Failed to read the 'selectionDirection' property from 'HTMLInputElement': The input element's type ('button') does not support selection.

(I'm using Google Chrome 34)

Why?

How else should I make $("p") more portable so I can store it or pass it in a message?

Share Improve this question asked Apr 15, 2014 at 1:36 jonS90jonS90 1,3892 gold badges11 silver badges15 bronze badges 12
  • why do you want to stringify an object? What is the purpose? You should be storing watever you need in a json object and stringify that instead right? – madi Commented Apr 15, 2014 at 1:39
  • 2 Why oh why would you want to store a jQuery selection set of DOM elements or make it portable in the first place? What is in those ps? – Benjamin Gruenbaum Commented Apr 15, 2014 at 1:39
  • What is the actual context for the question? It is hard to see how passing the results of a jQuery selector would ever need to be passed in a message. Unless you just need the HTML, in which case wouldn't $('p').html() be sufficient? – GregL Commented Apr 15, 2014 at 1:39
  • 1 @jonS90 how about using the ID of the element? (or setting a UID if there is none) – Petah Commented Apr 15, 2014 at 2:05
  • 1 @jonS90 if (!$('foo').attr('id')) { $('foo').attr('id', 'uid-' + Math.random()); } – Petah Commented Apr 15, 2014 at 2:08
 |  Show 7 more ments

1 Answer 1

Reset to default 9

There's a ton of state (attributes, event handlers, the code related to those, internal state, ...) involved in an HTML element. It just doesn't make sense to serialize all of that into JSON.

If you want to get some kind of representation of the element in JSON, you could for instance use .html() to get a HTML string representing the element. Or e up with a format that encodes, for instance, tag names, attributes and text only. You could have to implement that by hand though (or find a library - "html to json" could be a good keyword)

发布评论

评论列表(0)

  1. 暂无评论