Jquery - 背景图像点击
我在页面中央有一个 div。我体内有背景图像。 我需要使用 jquery 仅单击背景图像。 如果单击 id 为 divPage 的 div,则不会发生任何情况。
感谢您的建议或可能的其他解决方案。
HTML:
<body>
<form id="formBackground" method="post">
<div id="divPage">
Text.
</div>
</form>
</body>
CSS
body{
padding: 0px;
margin: 0px;
font-family: Arial, Verdana, Helvetica, sans-serif;
font-size: 12px;
color: white;
background-image: url('../images/backgrounds/bg.jpg');
background-repeat:no-repeat;
background-position:top;}
div#divPage{
width: 800px;
height: 300px;
margin: auto;}
我尝试了这个,但它无法正常工作:
$('body').click(function() {
alert("Click");
})
点击了 id 为 divPage 的 div。
I have a div in the center of the page. I have the background-image in the body.
I need to do using jquery click only on the background-image.
If you click the div with id divPage, nothing happens.
Thanks for the advice or possibly another solution.
HTML:
<body>
<form id="formBackground" method="post">
<div id="divPage">
Text.
</div>
</form>
</body>
CSS
body{
padding: 0px;
margin: 0px;
font-family: Arial, Verdana, Helvetica, sans-serif;
font-size: 12px;
color: white;
background-image: url('../images/backgrounds/bg.jpg');
background-repeat:no-repeat;
background-position:top;}
div#divPage{
width: 800px;
height: 300px;
margin: auto;}
I tried this, but it does not work correctly:
$('body').click(function() {
alert("Click");
})
It was click on the div with id id divPage.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以尝试:
注意,如果内容的高度非常低,您可能需要
在 css 中添加类似: 的内容,否则将没有可单击的正文。
演示:http://jsfiddle.net/mp4TH/
You can try:
Note, if the height of your contents is very low, you'll probably want something like:
in your css, or there will be no body to be clickable.
Demo: http://jsfiddle.net/mp4TH/
这是比较正确的做法。
This is more correct way.
未经测试,但是像这样的事情怎么样:
虽然它没有检测到背景图像上的点击,但它确实阻止了点击动作传播到主体顶部的任何元素。因此,点击只会在身体本身上被检测到。
Untested, but how about something like this:
Whilst it's not detecting a click on the background image, it does prevent the click action propagating for any element on top of the body. So the click will ONLY be detected on the body itself.