试图了解如何根据点击的元素 id(变量和 id 相同)获取设置的变量字符串。
var testingid = "testing";
var testingid2 = "testing2";
$('[id ^=inst][id $=STD]').click( function(event) {
event.preventDefault();
var text = this.id; //how do I turn the ID to get the set variable?
console.log(text);
});
因此,如果我单击带有 id testingid 的元素,控制台将输出“testing”。
千万里不及你
相关分类