属性的索引值

发布于 2024-10-03 02:51:47 字数 266 浏览 5 评论 0 原文

我正在使用以下代码 ... ...

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] 等

I am using the following code

...
...

for($i=0; $i<90; $i++){
?>
 <a id='read[<?php print $i; ?>]' href="<?php print $textToshow; ?>"> Text Shown</a> 
<?php } ?> 

I want to know the id of the a href when a user clicks on it. Something like read[1] read[2] etc

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

当爱已成负担 2024-10-10 02:51:47
$('a').click(function( e ) {
   alert(this.id);
   // e.preventDefault(); // Uncomment this line if you don't want
});                       //    to follow the link's href.

这会将 click 事件分配给所有 元素,这些元素将在单击时提醒其 ID。

取消注释 e.preventDefault() 行以防止默认行为链接的名称(位于其 href 后面)。

最好向链接添加一个类属性,然后使用该属性进行选择:

$('a.someClass').click(function( e ) {
   alert(this.id);
   // e.preventDefault(); // Uncomment this line if you don't want
});  

这将使用 "someClass" 的 元素="http://api.jquery.com/class-selector/" rel="nofollow">类选择器

$('a').click(function( e ) {
   alert(this.id);
   // e.preventDefault(); // Uncomment this line if you don't want
});                       //    to follow the link's href.

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 its href).

It would probably be best to add a class attribute to the links, and select using that:

$('a.someClass').click(function( e ) {
   alert(this.id);
   // e.preventDefault(); // Uncomment this line if you don't want
});  

This selects <a> elements with the class "someClass" using the class selector.

烟花易冷人易散 2024-10-10 02:51:47

在这里,

$('a[id^=read]').click(function(){
  alert(this.id);

  return false;
});

我使用 attribute-starts-with 选择器来定位链接具有以 read 开头的 id

Here you go

$('a[id^=read]').click(function(){
  alert(this.id);

  return false;
});

I use the attribute-starts-with selector to target the links that have an id that starts with read

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文