admin管理员组文章数量:1341878
I want to Simulate a button click via JavaScript using a button's value, not its id.
Here is the code using the button id
<input type="checkbox" onClick="document.getElementById('theSubmitButton').click();">Check the box to simulate a button click
<br>
<input type="button" name="theSubmitButton" id="theSubmitButton" value="Button" onClick="alert('The button was clicked.');">
I've tried getElementByValue('Button') but it didn't work.
I want to Simulate a button click via JavaScript using a button's value, not its id.
Here is the code using the button id
<input type="checkbox" onClick="document.getElementById('theSubmitButton').click();">Check the box to simulate a button click
<br>
<input type="button" name="theSubmitButton" id="theSubmitButton" value="Button" onClick="alert('The button was clicked.');">
I've tried getElementByValue('Button') but it didn't work.
Share Improve this question edited Aug 19, 2011 at 12:23 Skilldrick 70.9k36 gold badges182 silver badges231 bronze badges asked Aug 19, 2011 at 12:12 mwdarmwdar 1412 gold badges4 silver badges10 bronze badges 4- It works just fine for me: jsfiddle/pimvdb/R27rQ. – pimvdb Commented Aug 19, 2011 at 12:16
- @pimvdb That solution still uses the id. – jncraton Commented Aug 19, 2011 at 12:18
- @jncraton: I misunderstood the question. Didn't see what 'no't' meant. – pimvdb Commented Aug 19, 2011 at 12:20
- not sure why you want to do this, but it doesn't work for me in OS X Lion and Chrome. As in, the alert appears but the button click is not animated. – Aram Kocharyan Commented Aug 19, 2011 at 12:21
3 Answers
Reset to default 4Here's how I'd do it using jQuery:
http://jsfiddle/skilldrick/R27rQ/1/
$('input[type=checkbox]').click(function () {
$('input[value=Button]').click();
});
but as Senad said, IDs are much better-suited for this type of thing.
<script type="text/javascript">
function getButtonByValue(value) {
var els = document.getElementsByTagName('input');
for (var i = 0, length = els.length; i < length; i++) {
var el = els[i];
if (el.type.toLowerCase() == 'button' && el.value.toLowerCase() == value.toLowerCase()) {
return el;
break;
}
}
}
</script>
<input type="checkbox" onClick="getButtonByValue('Button').click();">Check the box to simulate a button click
<br>
<input type="button" name="theSubmitButton" id="theSubmitButton" value="Button" onClick="alert('The button was clicked.');">
jsfiddle example
function clickButton(val)
{
var buttons = document.getElementsByTagName('input');
for(var i = 0; i < buttons.length; i++)
{
if(buttons[i].type == 'button' && buttons[i].value == val)
{
buttons[i].click();
break; //this will exit for loop, but if you want to click every button with the value button then ment this line
}
}
}
this is solution...
HTML
<input type="checkbox" onClick="clickButton('Button');">Check the box to simulate a button click
But its best to find element by its ID
本文标签: Simulate a button click via JavaScript using a button39s valuenot its idStack Overflow
版权声明:本文标题:Simulate a button click via JavaScript using a button's value, not its id? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743681672a2521230.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论