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

getelementbyid - JavaScript getElementsById from variable - Stack Overflow

programmeradmin1浏览0评论

i would like to ask you how can i get elements by id from variable in JavaScript. For example i have in JavaScript variable which contains html source code and i would like to get elements from this variable.

For example:

var html = "<html><body><div id='test'>Hi</div> ... lot of code ... <div id='test'>Hi</div><div id='test'>Hi</div> ... lot of code ... </body></html>";

var get = html.getElementsById("test");

But it's not working

Thank you so much for any help

i would like to ask you how can i get elements by id from variable in JavaScript. For example i have in JavaScript variable which contains html source code and i would like to get elements from this variable.

For example:

var html = "<html><body><div id='test'>Hi</div> ... lot of code ... <div id='test'>Hi</div><div id='test'>Hi</div> ... lot of code ... </body></html>";

var get = html.getElementsById("test");

But it's not working

Thank you so much for any help

Share Improve this question asked Dec 1, 2014 at 7:22 tomsktomsk 9974 gold badges15 silver badges31 bronze badges 2
  • 2 An id should be unique – KooiInc Commented Dec 1, 2014 at 7:28
  • 2 document.getElementById not html.getElementsById – jasonscript Commented Dec 1, 2014 at 7:32
Add a ment  | 

2 Answers 2

Reset to default 6

You cannot do what you are doing. You have a few problems.

  1. getElementById is singular, not plural (getElementsById). This is because in properly formatted html, every id must be unique. Browsers allow it to slip by, but it is one element only
  2. getElementById() is a method on the DOM not on a string as you are doing above.

There are three ways that I can think of to do this:

You could try creating a regex to do it, but it would be messy. You would need to find every occurrence of `id\s+=\"'+myVar+\"' and then find the element surrounding it. Very messy, but doable.

Better is to load it into a browser and then do document.getElementById()

Even simpler is to use jquery

$(html).find('#test');

You could try DOMParser

var html = "<html><body><div id='test'>Hi</div> ... lot of code ... <div id='test'>Hi</div><div id='test'>Hi</div> ... lot of code ... </body></html>";

var parser = new DOMParser();
var doc = parser.parseFromString(html, 'text/html');


var get = doc.getElementsById("test");
发布评论

评论列表(0)

  1. 暂无评论