我有以下html片段:
<div onClick="javascript:getComments(this);" store-id="143568" class="CountryRow" style="padding: 4px;"><div class="flag flag_az"></div> Azerbaijan</div>
我想创建一个jquery函数来获取store-id
的值。我有以下但是它不起作用:
getComments = function(input) {
fValue = $(input).val( $(input).attr("store-id") );
alert('the ID :'+fValue);
}
有人能够善意地告诉我我做错了什么。
答案 0 :(得分:8)
这非常有效:
getComments = function(input) {
fValue = $(input).attr("store-id");
alert('the ID :'+fValue);
}
答案 1 :(得分:4)
看一下jQuery custom selectors。就个人而言,我会使用HTML5 data attributes来处理jQuery中已经supported的情况。
无论它的价值如何,考虑到我认为你想要最初执行的参数应该像
那样完成getComments = function(input) {
fValue = $(input).html( $(input).attr("store-id") );
alert('the ID :'+fValue.html());
}
答案 2 :(得分:3)
你所要做的就是:
fValue = $(input).attr("store-id");
你的代码片段试图添加到div的'value'属性(不存在)