javascript - Get element by placeholder. Code not working - Stack Overflow

The code in the JsFiddler below works when I get the element by ID, but when I try to get it by placeho

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
Add a ment  | 

1 Answer 1

Reset to default 14
var el = $('*[placeholder="Select Country"]');

You may have to reference the input as:

el[0]

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743577351a4473755.html

相关推荐

  • javascript - Get element by placeholder. Code not working - Stack Overflow

    The code in the JsFiddler below works when I get the element by ID, but when I try to get it by placeho

    2天前
    30

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信