我想获取输入标签的 id 属性值。
<input type="text" id="heading1" class="alert-heading" value="aaa" />
为此,我编写了这段代码。
var alertHeading = $(".alert-heading");
alertHeading.on('blur', function(){
var headingId = $(this).attr("id");
console.log(headingId); // outputs 2943. I'm expecting "heading1".
});
但是,当我访问 id 时,我得到一个奇怪的数字,尽管我希望得到一个“heading1”。
这是我现在正在处理的代码。
var alertHeading = $(".alert-heading");
alertHeading.on('blur', function(){
var key = alertMode.val();
chrome.runtime.getBackgroundPage(function(backgroundPage) {
var background = backgroundPage.background;
var alertObject = background.getStorage(key);
//(EDITED)Oh I think $(this)here no longer points to the input element!!
var headingId = $(this).attr("id");
console.log(headingId); // outputs 2943. I'm expecting "heading1".
});
})
请帮我解决这个问题。提前致谢!