一区二区久久-一区二区三区www-一区二区三区久久-一区二区三区久久精品-麻豆国产一区二区在线观看-麻豆国产视频

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的內容 精華篇,轉載需保留來源!

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

主站蜘蛛池模板: 日韩在线观看中文字幕 | 日韩美一区二区三区 | 亚洲六月丁香六月婷婷蜜芽 | 色图影院| 久久国产香蕉 | 国产成人永久免费视 | 色呦呦在线播放 | 米奇精品一区二区三区 | 亚洲精品天堂自在久久77 | 精品伊人久久久香线蕉 | 亚洲香蕉伊综合在人在线 | 9丨精品国产高清自在线看 aⅴ一区二区三区 | 精品玖玖玖视频在线观看 | 玖玖在线精品 | 国产精品福利一区二区亚瑟 | 色综合狠狠干 | 日本加勒比中文字幕 | 国产精品伦理久久久久久 | 久久中文字幕一区二区三区 | 福利片午夜 | 国产呦精品一区二区三区网站 | 美女扒开屁股给男人看无遮挡 | 国产1区2区3区在线观看 | 久久久免费网站 | 亚洲精品久| 美女大胸又爽又黄网站 | 91av国产在线| 婷婷久久综合九色综合九七 | 亚洲国产精品久久久天堂麻豆 | 婷婷综合色伊人阁 | 国产在线一区二区三区 | 国产精品视频一区二区三区小说 | 午夜视频免费在线观看 | 精品无码一区在线观看 | 91久久国产综合精品女同国语 | 亚洲一二四区性毛片1在线 亚洲一级黄色毛片 | 成人观看天堂在线影片 | 色综合天天综合 | 国产成品精品午夜视频 | 久久久这里有精品 | 国产三级国产精品国产普男人 |