如何使用JQuery从HTML主体中单独提取文本和图像

时间:2012-02-07 14:56:18

标签: jquery extract

我有HTML Body。我想提取文字和图片。然后我想使用以下方法将带有文本的src图像发送到另一个php页面:

$.post("sendtextandimage.php","task=sendmsg"+"&text="+text+"img="+src,
  function(data) {

});  or $.ajax();

我的HTML正文如下:

<div>Image src url with Title:PHP championCity:Mumbai, Maharashtra, IndiaSummary:We are looking for a PHP champ for our Mumbai office. Candidate with knowledge of mobile app development will be given added advantage.</div>

如何修复它。 我需要你的手。 谢谢

1 个答案:

答案 0 :(得分:0)

var text = $('div#id1').text();
var src = $('img#id2').attr('src');