Jump to content
php.lv forumi
  • 0

Kā pareizi aizvietot dalju no html taga ar JS?


SoWhat

Question

Sveiki!

 

Nepieciešams aizvietot textu lapā. Mēģināju ar sekojošu skriptu, bet tas diemžēl sačakarēja DOM:

<script type="text/javascript" >
function myscript() {
input = 'aaa.lv/bbb/cc/"';
output='ddd.ee.pl/fff/publisher.html?lang=en_GB" onClick="popup = window.open("http://ddd.ee.pl/fff/publisher.html?lang=en_GB", "Registration", "height=450,width=640,scrollbars=yes,resizable=yes"); return false" target="_blank"';
document.body.innerHTML = document.body.innerHTML.replace(input,output);
}
</script >

Edited by SoWhat
Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

Labāk pasaki, ko gribi.

Ja gribi, lai uz linkiem atveras popups, tad vienkārši ar jquery piešķir onclick eventu un atgriez return false, lai neizsauc neizpilda defaulto.

http://jsfiddle.net/SuHrB/

 

$(function(){
$('a').click(function(){
   	var href=$(this).attr('href');
   	popup = window.open(href, "Registration", "height=450,width=640,scrollbars=yes,resizable=yes");
   	return false
});
});

Link to comment
Share on other sites

  • 0

Neredzu pēdiņas pie output. Atver tak js konsoli, papēti kļūdas...

 

Sorry, pēdiņa pazuda pēc iepeistošanas.

 

 

Labāk pasaki, ko gribi.

Ja gribi, lai uz linkiem atveras popups, tad vienkārši ar jquery piešķir onclick eventu un atgriez return false, lai neizsauc neizpilda defaulto.

http://jsfiddle.net/SuHrB/

 

diemžēl ir viens konkrēts links bez klases un bez ID, vienīgā atšķirība ir pats parametrs href. Tevis dotais kods darbosies uz pilnīgi visiem linkiem lapā. Bet galvenais mērķis tiešām ir atvērt linku popupā.

Edited by SoWhat
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...