javascript - How could i find the text in a specific TD with a css class where TR is stored as this -


मैं इस कोड को tr

  $ ('# prod_tbl & gt; & Gt; tr ')। प्रत्येक (फ़ंक्शन () {var x = $ (this);});   

अब मुझे क्या चाहिए कि मैं टीडी के साथ विभिन्न वर्ग नामों जैसे कि .price, .name

चाहता हूँ कि मैं प्रत्येक टीडी के मूल्य को विभिन्न चर में एक्सेस करना चाहता हूं, जब मैं टी के माध्यम से लूप

जैसे

  $ ('# prod_tbl & gt; tbody & gt; tr') प्रत्येक (फ़ंक्शन () {var x = $ (this); Var की कीमत = $ ("टीडी.प्रिस")। पाठ (); var नाम = $ ("टीडी.नाम")। पाठ ();});   

प्रत्येक टी के लिए

आपको .find () अपने कार्य को पूरा करने के लिए इस संदर्भ में। ऐसा इसलिए है क्योंकि टीडी s प्रत्येक tr के वंश हैं $ (this) , tr को इंगित करेगा, इसलिए हमें इसका मिलान करने वाले वंश को खोजने के लिए .find (selector) का उपयोग करना होगा < / P>

कोशिश करो,

  $ ('# prod_tbl & gt; छोड़ा & gt; tr')। प्रत्येक (फ़ंक्शन () {var x = $ (this); var price = x .find ("td.price")। पाठ (); var नाम = x.find ("td.name")। पाठ ();});   

कृपया । Find () के बारे में अधिक जानने के लिए पढ़ें

Comments

Popular posts from this blog

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -