jquery获取自定义(组成)属性值

时间:2011-11-10 22:13:56

标签: javascript jquery html

我有以下html片段:

<div onClick="javascript:getComments(this);" store-id="143568" class="CountryRow" style="padding: 4px;"><div class="flag flag_az"></div> &nbsp; Azerbaijan</div>

我想创建一个jquery函数来获取store-id的值。我有以下但是它不起作用:

 getComments = function(input) {
   fValue = $(input).val( $(input).attr("store-id") );
   alert('the ID :'+fValue);
 }

有人能够善意地告诉我我做错了什么。

3 个答案:

答案 0 :(得分:8)

这非常有效:

getComments = function(input) {
  fValue =  $(input).attr("store-id");
  alert('the ID :'+fValue);
}

http://jsfiddle.net/mHBuE/

答案 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'属性(不存在)