javascript - url path [jQuery] -


मैं jQuery फ़ंक्शन का उपयोग करता हूं:

  $ (document) .ready (function () { $ ("# Img")। लोड ("loader.php .allcon,", फ़ंक्शन () {$ ("। Allcon")। Attr ();});});   

तो HTML कोड आउटपुट:

  & lt; div class = "1" & gt; & Lt; div वर्ग = "2" & gt; & Lt; a href = "/ xxxx / xxxx.html" & gt; & Lt; / div & gt; & Lt; / div & gt;   

यूआरएल लक्ष्य आउटपुट: "लोकलहोस्ट / xxxx / xxxx.html"

URL बनाने का एक तरीका होगा:

के बारे में।

  $ ('a')। प्रत्येक (फ़ंक्शन (i) {var _o = $ (यह) .attr ('href'); $ (यह) .attr ('href', 'http://website.com/' + _o;});    

Comments