-1
我有一個certian文本的iframe:jQuery的查找和替換文本在IFRAME SRC
mytext的
<iframe src="theURL?mytext" ... />
我如何搜索 「mytext的內容」,並刪除它?
我有一個certian文本的iframe:jQuery的查找和替換文本在IFRAME SRC
mytext的
<iframe src="theURL?mytext" ... />
我如何搜索 「mytext的內容」,並刪除它?
$('iframe[src*="mytext"]').attr('src', function(i, oldSrc) {
return oldSrc.replace('mytext', '');
});
你可以在這裏http://stackoverflow.com/questions/364952/jquery-javascript-accessing-contents-of-an-iframe看看 –