English 中文(简体)
发射多起Click事件
原标题:Multiple onClick events firing

我有几块隔.。 每一次都有自己的浮标活动。 因此,想象它像一个沙子管一样,底层是面包(这一层在地理上比内部挤满的面积更大),th,然后是mato。

因此,它希望:

---------------------------
| Bread                   |
|                         |
| ----------------------- |
| | Lettuce             | |
| |                     | |
| | ------------------- | |
| | |Tomato           | | |
| | |                 | | |
| | |   <*click>      | | |
| | |                 | | |
| | |                 | | |
| | ------------------- | |
| ----------------------- |
---------------------------

目前,当用户点击红线上线时,它冲走了西红线的适当顺序,但事情却去了。 由于它一旦焚烧番茄,它就突然焚烧,最后是面包。

我之所以这样说,是因为从技术上讲,DID用户在这些干.中点击,而只是因为 to在他们中间。

should 工作方式是,如果用户点击沙里面的Tomato部分,则只能向红线索火。 另一方面,如果用户点击mato线背mato的lett部分,那么它就应当火上.。

因此,我的问题是,能否将四分五点“opaque”点击,这样,即使它们相互隔绝,只是实际点击的。

问题回答

您可在现行手稿之后添加return不实,以防止点击 from或传播......这是造成<条码>click关于母体元素的活动的原因。

我建议进行以下阅读,以更好地了解所发生的情况:quirksmode.org, 出色地解释了伪造的事件。

在非IE浏览器中,event.stoppropagation(); 将活动从铺开到母子,在IE,event.cancelBubble = 真实; 我们应该 do。 <代码>event是发给听众的论点。

感谢这些帮助。 不幸的是,我认为我可能无意中遗漏了一个重要的信息。 在本案中,联合材料实际上向服务器提出AJAX的请求。 因此,在这种情况下,出于某种原因,手持假事件的“再造假”不工作。

我怀疑向服务器发出的XMLHttpRequest电话可能同时发射。

然而,我得以通过在四舍五入内设置一个组级(封顶)<代码><a>标签,然后将我的点击活动放在<代码><a> tag而不是<代码><div>。

因此,我刚刚从此修改了法典:

<div class= container  id= idstring  onclick="ajaxcall(parameters)">
  <? server-side call to recursive function ?>
</div>

为此:

<div class= container  id= idstring ><a onclick="ajaxcall(parameters)">
  <? server-side call to recursive function ?>
</a></div>




相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签