admin管理员组文章数量:1339193
The code in the JsFiddler below works when I get the element by ID, but when I try to get it by placeholder (because there is no ID in the input I'm trying to interact with) The code won't work. My tries are below:
var el = $("[placeholder='Select Country']");
var el = $("input:placeholder(Select Country)");
var el = $("input").attr("placeholder","Select Country");
var el = document.querySelectorAll('[placeholder="Select Country"]');
function setKeywordText(text) {
var el = document.getElementById("gwt-debug-keywords-text-area");
el.value = text;
var evt = document.createEvent("Events");
evt.initEvent("change", true, true);
el.dispatchEvent(evt);
}
setKeywordText("test");
<input type="text" placeholder = "Select Country" id ="gwt-debug-keywords-text-area" />
The code in the JsFiddler below works when I get the element by ID, but when I try to get it by placeholder (because there is no ID in the input I'm trying to interact with) The code won't work. My tries are below:
var el = $("[placeholder='Select Country']");
var el = $("input:placeholder(Select Country)");
var el = $("input").attr("placeholder","Select Country");
var el = document.querySelectorAll('[placeholder="Select Country"]');
function setKeywordText(text) {
var el = document.getElementById("gwt-debug-keywords-text-area");
el.value = text;
var evt = document.createEvent("Events");
evt.initEvent("change", true, true);
el.dispatchEvent(evt);
}
setKeywordText("test");
<input type="text" placeholder = "Select Country" id ="gwt-debug-keywords-text-area" />
Thank you,
Share Improve this question edited Oct 9, 2018 at 0:05 Ele 33.7k7 gold badges43 silver badges80 bronze badges asked Oct 9, 2018 at 0:01 Creek BarbaraCreek Barbara 6471 gold badge8 silver badges35 bronze badges 2-
3
Use this
document.querySelector('[placeholder="Select Country"]')
– Ele Commented Oct 9, 2018 at 0:07 - 1 In your examples, you get a JQuery object back, not a HMTLElement. To get an element from a JQuery object, add: [0] – Poul Bak Commented Oct 9, 2018 at 0:17
1 Answer
Reset to default 14var el = $('*[placeholder="Select Country"]');
You may have to reference the input as:
el[0]
本文标签: javascriptGet element by placeholder Code not workingStack Overflow
版权声明:本文标题:javascript - Get element by placeholder. Code not working - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743577350a2505230.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论