中文字幕日韩一区二区_国产一区二区av_国产毛片av_久久久久国产一区_色婷婷电影_国产一区二区精品

javascript獲取div的內容 精華篇

原理:采用innerText 或者 innerHTML
復制代碼 代碼如下:
<script language=”Javascript”>
var stock_code = stockcode.innerText;
var stock_code = stockcode.innerHTML;
</script>
<div id="stockcode" style="display:none">
test
</div>


innerText 跟 innerHTML是兩個非DOM標準的方法
其區別如圖所示:
(圖中應該為innerText)


在IE中 innerText 跟 inner HTML 兩個方法都能正常運行

但是FF里面的innerText不可用,但是有一個替代方法: textContent

IE: oDiv.innerText = aString; oDiv.innerHTML = aString;
FF: oDiv.textContent = aString; oDiv.innerHTML = aString;

Ajax in action 的作者之一Eric 用正則表達式 實現了 一個兼容方法,比較有趣
Hope this helps
A little smirk
One day a secretary is leaving on her lunch break, and she notices her boss standing in front of a shredder with a clueless look on his face. The secretary walks up to him and asks if he needs help.
"Yes!" he says looking and sounding relieved, "This is very important."
Glad to help, she turns the shredder on and inserts the paper. Then her boss says, "Thanks, I only need one copy."
Create function like innerText
As you may have figured out innerText is IE only. That means that browsers like Mozilla, Firefox, and NETscape will return undefined. If you do not know what innerText does, it strips out all of the tags so you only see the text.
For example, if a div contains the HTML <span id='span1'>Eric</span>, innerHTML would return <span id='span1'>Eric</span> while innerText will return Eric.
Now to make innerHTML act the same we need to use some regular expressions with the strings replace() method.
Now the basic pattern we need to match is or or or
Now the regular expression we need to use is /<//?[^>]+>/gi
If you do not know regular expressions here is a quick explanation:
/ - Starts the regular expression
< - Match the less than sign
// - Escape the character / so it can be matched (Without the / you would be saying it is the end of the reg exp.)
? - Match the / character 0 or 1 times
[^>] - Match any character but greater than sign
+ - Match [^>] one or more times
> - Match greater than sign
/ - End the regular expression
gi - Tells regular expression to match global and ignore the case
So now the function to replace the text would look like:
復制代碼 代碼如下:
<script type="text/Javascript">
var regExp = /<//?[^>]+>/gi;
function ReplaceTags(xStr){
xStr = xStr.replace(regExp,"");
return xStr;
}
</script>

All you need to do is pass it a string and it returns the string stripped of the tags.
An example is shown below to grab the text from a div without the tags.

[Ctrl+A 全選 注:如需引入外部Js需刷新才能執行]

JavaScript技術javascript獲取div的內容 精華篇,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 午夜精品一区二区三区在线 | 久久久入口 | 日韩精品1区2区3区 爱爱综合网 | 成人性生交大片免费看r链接 | 国产成人午夜高潮毛片 | 热99| 亚洲精品成人网 | 国产线视频精品免费观看视频 | 亚洲高清视频一区二区 | 91久久精品一区二区二区 | www.日韩免费 | 日本a在线 | 亚洲一区二区在线视频 | 中文字幕一区二区三区在线乱码 | av免费网站在线 | 亚洲精品在线观 | 成人av电影网 | 自拍偷拍第一页 | 成人一区av偷拍 | 91久久精品一区二区二区 | 在线观看黄色电影 | 亚洲成人久久久 | 黄色成人av | 成人午夜在线 | 国产精品久久久久久久岛一牛影视 | 九九色综合 | 日日干天天操 | 欧美2区 | 久久高清 | 国产精品久久久久久久久久久新郎 | 国产精品久久久久久久久久免费 | 精品乱人伦一区二区三区 | 欧美视频1区 | 国产精品69av| 欧美成人a∨高清免费观看 91伊人 | 久久久久久久91 | 亚洲一区不卡在线 | 中文字幕一区二区三区四区 | 新av在线| 亚洲福利免费 | 91福利影院 |