我有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>
如何修复它。 我需要你的手。 谢谢
答案 0 :(得分:0)
var text = $('div#id1').text();
var src = $('img#id2').attr('src');