获取标签里的纯文字内容

<div class="js-text">test<span>subtest</span></div><script type="text/javascript">  $(function(){    var text = $(‘.js-text‘).contents()[0].data;    console.log(text); //输出test  });</script>

原文地址:https://www.cnblogs.com/myyouzi/p/11508229.html

时间: 2024-11-10 16:56:10

获取标签里的纯文字内容的相关文章

获取html字符串中第一张图片的路径以及获取html字符串中的文字内容(去掉标签)

/** * 获取html字符串中第一张图片的路径 * @param htmlcontent * @return */ public static String getImgFromHtml(String htmlcontent){ if(htmlcontent!=null){ String regEx_img = "<img.*src\\s*=\\s*(.*?)[^>]*?>"; Pattern p_image = Pattern.compile(regEx_img,

获取WebView里的网页文本内容

获取WebView里的网页文本内容,能够採用例如以下方法: public class ComJSInterface { public void loadHtmlContent(String content) { Log.d("comJs", "html:" + content); } } mWebView.addJavascriptInterface(new ComJSInterface(), "comjs"); mWebView.loadUrl

[前端]利用a标签获取url里所需的内容

// This function creates a new anchor element and uses location // properties (inherent) to get the desired URL data. Some String // operations are used (to normalize results across browsers). function parseURL(url) { var a = document.createElement('

css实现纯文字内容元素透明背景(兼容IE6)

HTML: <div class="title-wrapper"> <span class="title"> <span class="icon sp-index sp-index-tag-bg"> <i class="mood2 sp-base"></i> </span> <span class="txt"> <sp

如何拿到iframe标签里面的src的内容,并且重新进行渲染

<iframe width="100%" height="100%" seamless frameBorder="0" scrolling="no" :src='getSrc(item.frameLink)' > </iframe> 因为后台的直接返回的是iframe标签,不好去控制宽高 getSrc(item) { var srcReg = /src=[\'\"]?([^\'\"]

jquery获取标签内容,编辑内容

一.获取页面元素 三种方式获取页面中元素的内容. input标签使用:.val()获取 标签下的html及文本内容:.html() 仅获取标签下的纯文本内容:.text() <head> <script type="text/javascript"> $(function(){ console.log($(".1").html());//会获取其中包含html的所有值<p>a</p> console.log($(&qu

HTML中获取某标签的父结点和内容

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>获取标签的父结点和内容</title> <script> function click_event(){ var im_content=document.getElementsByClassName('talk_time'); alert(im_content[0].parentNod

demo15-获取标签里面的值

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <!-- 执行的時候是自上而下,当放在这里的时候就... 如果希望在head标签里面执行,那么需要添加一个入口函数 --> <script type="text/javascript"> //表示窗口的意思,onload表示加载js里面

python BeautifulSoup获取 网页链接的文字内容

这里和 获取链接略有不同,不是得到链接到url,而是获取每个链接的文字内容 #!/opt/yrd_soft/bin/python import re import urllib2 import requests import lxml from bs4 import BeautifulSoup url = 'http://www.baidu.com' #page=urllib2.urlopen(url) page=requests.get(url).text pagesoup=Beautiful