iT邦幫忙

0

有關網頁內容 文字 (html) 取代問題

  • 分享至 

  • xImage

如何利用replace() & RegExp()尋找並取代/刪除文字(即html)
我想從xx網站的html 刪除所有 "disabled" , 尋找"|1"並用"|0"取代

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

2 個回答

0
鄭小安
iT邦新手 5 級 ‧ 2016-10-20 00:44:11
<div id="test">
	<button disabled >test A</button>
	<ul>
		<li>|1</li>
		<li>asdf</li>
		<li>asdf</li>
		<li>|1<button disabled >test B</button></li>
		<button disabled >test C</button>
	</ul>
</div>
<script>
$(document).ready(function(e) {
	$('#test [disabled]').removeAttr('disabled').html()
	html = $('#test').html().replace(/\|1/g,"|0");
	alert(html);
});
</script>

是這樣嗎?

我猜「不是」
不是妳的答案不對
而是樓主沒說完他真正想做的事情

/images/emoticon/emoticon06.gif

HuiTC. iT邦新手 5 級 ‧ 2016-10-21 12:00:03 檢舉

@海綿寶寶 @鄭小安 用於Tampermonkey~! /images/emoticon/emoticon25.gif

0
ogit
iT邦見習生 ‧ 2016-10-27 20:18:33

我要發表回答

立即登入回答