admin管理员组文章数量:1345332
I need to select and find the html value of the H2 tag within a particular div which is clicked, this is what I'm trying right now but to no avail:
When the .square is clicked, I'm trying to run this:
$(this).find('h2').html();
and this is what the html looks like:
<div class="square" id="2"><h2>Title</h2><h3>Comment</h3></div>
What am I doing wrong?
Thanks
I need to select and find the html value of the H2 tag within a particular div which is clicked, this is what I'm trying right now but to no avail:
When the .square is clicked, I'm trying to run this:
$(this).find('h2').html();
and this is what the html looks like:
<div class="square" id="2"><h2>Title</h2><h3>Comment</h3></div>
What am I doing wrong?
Thanks
Share Improve this question edited Apr 15, 2013 at 14:19 Felix Kling 818k181 gold badges1.1k silver badges1.2k bronze badges asked Apr 15, 2013 at 14:13 TaimurTaimur 3,2518 gold badges35 silver badges38 bronze badges 4- 2 Why do you think you are doing something wrong? What happens? You also have to explain the problem you are facing, not only what you are trying to achieve. – Felix Kling Commented Apr 15, 2013 at 14:15
- Are you assigning that to a variable, appending it, hiding it? – tymeJV Commented Apr 15, 2013 at 14:15
- @FelixKling I tried to set the thing as a variable and alert() it but it's alerting 'undefined' – Taimur Commented Apr 15, 2013 at 14:16
- Please post a more plete example, preferably with jsfiddle demo. The code you posted is not enough to pinpoint the problem. – Felix Kling Commented Apr 15, 2013 at 14:17
4 Answers
Reset to default 6Your code has to be placed inside a click handler like so:
$('.square').on('click', function() {
alert($(this).find('h2').html());
}
Outside of the click handler, this
points to window
and $(window).find('h2')
doesn't find anything and thus .html()
yields undefined
.
If your <div class="square">
is dynamically generated, you need to "hook" your click handler onto the closest element that will not disappear from the page.
$('#element_id').on('click', '.square', function() {
alert($(this).find('h2').html());
}
A more efficient way for doing this is:
$('body').on('click', '.square', function(event) {
var html = $(this).find('h2').html();
console.log(html);
});
Maybe you have to run the code after the document is ready.
$(function() {
$(".square").click(function() {
console.log($(this).find('h2').html());
});
});
$(function() {});
is the short way to write $(document).ready(funciton() {});
.
Moreover your code has to be placed as callback of the click event listener.
Your code is entirely correct. You may see an example of an application here (or on the fiddle):
<script>
$(document).ready(function(){
$("div#2").click(function(){
var title = $(this).find('h2').html();
$("span").text(title);
});
});
</script>
<div class="square" id="1"><h2>I'll not work because my id is 1</h2></div>
<div class="square" id="2"><h2>Click me and you'll see me below on the span!</h2></div>
<span></span>
本文标签: javascriptjQuery selector for a heading in (this) divStack Overflow
版权声明:本文标题:javascript - jQuery selector for a heading in $(this) div - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743779378a2537554.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论