gpt4 book ai didi

javascript - 在 Meteor JS 运行时获取输入标签属性 ID 名称

转载 作者:行者123 更新时间:2023-11-28 13:36:36 24 4
gpt4 key购买 nike

我需要在 Meteor js 运行时获取输入标签属性 ID 名称。我开发了一个示例示例,如下所示。

HTML code :

<body>

{{>ui}}<br>
</body>

<template name="ui">
<input type="button" value="" id="btn1"/>
<input type="button" value="" id="btn2"/>
</template>

JS Code :

Template.ui.events
({
'click input' : function (event)
{
// template data, if any, is available in 'this'
if (typeof console !== 'undefined')
//get input tag Attribute ID name here
console.log("Get input button id here");
}
});

我是 Meteor 新手,我对此没有任何想法,所以请帮助我。

最佳答案

用普通的 JS 你可以写:

event.currentTarget.id

使用 jQuery:

$(event.currentTarget).attr("id")

关于javascript - 在 Meteor JS 运行时获取输入标签属性 ID 名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20920123/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com