Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<div style="float: left; margin-top: 10px; font-family: Verdana; font-size: 13px; color: #404040;">innertext</div>

there are some divs like this, not use id or class, but a style. How to get the inner text with each one? Thanks.

share|improve this question
1  
I'm guessing that English isn't your first language, but can I ask what you mean by "a style for its feather," I'm mystified... – David Thomas Mar 12 '11 at 17:25
Right, delete the wrong word. – cj333 Mar 12 '11 at 17:28
@cj333 are theose style uique to whatever is on the DOM among <div> – kjy112 Mar 12 '11 at 17:29
hard to answer given the snippet you posted. is the div INSIDE something that CAN be selected? – Scott Evernden Mar 12 '11 at 17:29
@rdamborsky, @kjy112, @rdamborsky, The parent div's id and class is changeable. If DOM can not do. maybe need use php regular-expression. – cj333 Mar 12 '11 at 17:36
show 2 more comments

4 Answers

up vote 2 down vote accepted

If the styles are consistent, then you can loop over all divs in the document and filter them by style.

var divs = document.getElementsById("div");

for (var i = 0; i < divs.length; i++) {
    var div = divs[i];

    // skip the current div if its styles are wrong
    if (div.style.cssFloat !== "left"
     || div.style.marginTop !== "10px"
     || div.style.fontFamily !== "Verdana"
     || div.style.fontSize !== "13px"
     || div.style.color !== "#404040") continue;

    var text = div.innerText || div.textContent;

    // do something with text
}
share|improve this answer

You may use the content of style tag if no id or class is given there like:

include('simple_html_dom.php');
$html = file_get_html('http://www.mysite.com/');
foreach($html->find('div[style="float: left; margin-top: 10px; font-family: Verdana; font-size: 13px; color: #404040;"]') as $e)
echo $e->innertext;
share|improve this answer

You could probably try to match some of their parents (which have class or id set), then traverse the DOM to the child you want.

share|improve this answer

Thanks to all. I depends on simple_html_dom too much, Ben Blank give me a good way. And I also tried php regular-expression to match the div by myself.

preg_match_all('/<div.*(style="float: left; margin-top: 10px; font-family: Verdana; font-size: 13px; color: #404040;").*>([\d\D]*)<\/div>/iU',$html,$match);
print_r($match); 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.