如何在jquery中从用户定义的类中获取特定标记元素的值

时间:2015-07-06 06:13:53

标签: jquery html

我希望使用b中的jquery获取class="address"标记的值。有没有办法做到这一点。

<div class="address"> 

    <h4>Your Restaurant address is:</h4>      
    <p style="font-size:10px"><b>BANSHANKARI</b><br />NO-17, GF, 3RD PHASE, NEAR BIG BAZAR, 100FT RING ROAD, 6TH BLOCK, BANASHANKRI III STAGE, BANASHANKRI,BANGALORE - 560085 PH.NO. 080-26699595/ 26699540 / 45/ 41723004/3020<br />Phone: 8026699595</p>`   

</div>

2 个答案:

答案 0 :(得分:1)

使用text()获取元素的innerText。

  

获取匹配元素集合中每个元素的组合文本内容,包括它们的后代。

select t1_a, t1_b, --repeat for all cols of table1
case when t1_a is not null then t1_a else B.a end,
case when t1_b is not null then t1_b else B.b end
--repeat this for all the columns of table2    
 from   
    (select table1.a t1_a, table1.b t1_b --repeat for all cols of table1
            ,table2.a t2_a, table2.b t2_b --repeat for all cols of table2
    from table1
    left join table2 
      on table1.a = A.a) A
    left join 
     table2 B
      on (t2_a is null and t1_b = B.b);

Demo

答案 1 :(得分:0)

你可以简单地使用它:

$('b').text();

$('p b').text();

快乐编码:)