通过检索rel属性来调用变量

时间:2013-01-19 01:29:02

标签: javascript jquery frontend

  

可能重复:
  Is there a way to access a javascript variable using a string that contains the name of the variable?

我根据用户与原型的交互编写了一些内容。当他们点击某个标注时,我正在尝试使用与其关联的rel标记来输入正确的变量,但到目前为止,我没有运气。

这是一个小例子。

<div class='cool-btn' rel='awesome'>
Content here
</div>

然后

var awesome = 'some content';

$('.cool-btn').click(function() {
    //do stuff
    $('.other-selector').append($(this).attr('rel'));
}

我记得当你在ActionScript(闪回!)中跳入和跳出变量和选择器时,你会把东西放在方括号[]中,但是我在这里尝试类似的东西或找到有关的信息都没有成功这一点。

感谢您的帮助 -

0 个答案:

没有答案