'这'选择器在jquery中不起作用

时间:2016-07-17 15:05:56

标签: javascript jquery html select

这是我的代码,我想在那里打印元素的icon属性的值,但它不起作用!为什么?

$("dbutton[style='addon']").text($(this).attr("class")+"Hello");

我尝试使用事件,例如:

$("dbutton[style='addon']").ready(funtcion() {
  $(this).text($(this).attr("class")+"Hello");
  });

但它也没有用,我也不知道问题!

2 个答案:

答案 0 :(得分:0)

主要代码是这一个。 它将函数打印为字符串:

$("dbutton[style='addon']").html("<i class="+function() { return $(this).attr('icon');}+"></i>");

答案 1 :(得分:-1)

dbutton不是dom元素..我认为你选择了错误的元素..它可能是一个类或id。所以它应该是

$(".dbutton[style='addon']").text($(this).attr("class")+"Hello");

$("#dbutton[style='addon']").text($(this).attr("class")+"Hello");

并且您的问题中的单词函数拼写错误