开发者

More convert jquery object to string

开发者 https://www.devze.com 2023-02-09 15:26 出处:网络
Yes I have see the post here And I tried that but the problem is, my jquery object looks more like this:

Yes I have see the post here

And I tried that but the problem is, my jquery object looks more like this:

var $foo = $('<ul><li id="' + line.id + '" label="' + label + '" rel="file"><a href="#">' + line.title + '</a></li></ul>');
$foo.click(function() { openLink(line.url) });
$foo.appendTo($myDiv);

When $myDiv is fully populated I can do this:

var html = $('<div>').append($('#foo').clone()).remove().html();

And I will see all of the lovely HTML, but I don't know if the click stuff will be preserved. See, I want to save the entire DOM modification to localStorage so I can retrieve it quickly since it's pretty static. I need to be able to store it and all i开发者_开发技巧ts attributes, then yank it back out and restore it, clicks and all.

Does that make sense?


The only way to do this would be to use inline event handlers, which is a bad (and slow) idea.

Instead, you can convert all of your event handlers to live handlers; they will then automatically apply to all matching elements without having to rebind them after changing the DOM.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号