属性的索引值
我正在使用以下代码 ... ...
for($i=0; $i<90; $i++){
?>
<a id='read[<?php print $i; ?>]' href="<?php print $textToshow; ?>"> Text Shown</a>
<?php } ?>
我想知道当用户点击 a href 时它的 id。类似 read[1] read[2] 等
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这会将
click
事件分配给所有元素,这些元素将在单击时提醒其 ID。
取消注释
e.preventDefault()
行以防止默认行为链接的名称(位于其href
后面)。最好向链接添加一个类属性,然后使用该属性进行选择:
这将使用 "someClass" 的
元素="http://api.jquery.com/class-selector/" rel="nofollow">类选择器。
This assigns a
click
event to all<a>
elements that will alert its ID when clicked.Uncomment the
e.preventDefault()
line to prevent the default behavior of the link (following itshref
).It would probably be best to add a class attribute to the links, and select using that:
This selects
<a>
elements with the class"someClass"
using the class selector.在这里,
我使用 attribute-starts-with 选择器来定位链接具有以
read
开头的id
Here you go
I use the attribute-starts-with selector to target the links that have an
id
that starts withread