也許這是非常基本的,但我都很困惑。 我有一個簡單的HTML頁面與許多部分(股利)。我有一個字符串包含javascript中的html標籤。代碼如下:如何使用javascript或jquery從字符串中提取html標記的內容?
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">
var str1="<html><body><div id='item1'><h2>This is a heading1</h2><p>This is a paragraph1.</p></div><div id='item2'><h2>This is a heading2</h2><p>This is another paragraph.</p></div><div id='lastdiv'>last</div></body></html>";
</script>
</head>
<body>
<div id="title1"></div>
<div id="new1"></div>
<div id="title2"></div>
<div id="new2"></div>
</body>
</html>
我想提取的HTML標籤(從JavaScript中的字符串)的內容,並顯示在我的html頁面中所需的部分的內容。
即我要在<div id="title1">
和「This is a paragraph1」中顯示「This is a heading1」。在<div id="new1">
中顯示,對於第二對標籤也是如此。
我需要所有這些只在客戶端工作。我試圖使用HTML DOM getElementByTagName方法,它變得太複雜了。我對jquery知之甚少。我很困惑。我不明白如何去做。你能指導我使用什麼 - JavaScript或jQuery和如何使用它?有沒有一種方法來識別字符串並遍歷它?
如何從str1中提取「This is heading1」(以及包含在html標籤中的類似內容)?我不知道這些索引,因此不能在javascript中使用substr()或substring()函數。
Thnks ..它的工作.. – user1196522 2012-02-08 09:41:17