get value for a input button using jquery

做~自己de王妃 提交于 2019-12-06 17:49:56

问题


i need to retrieve value for a clickable button using jquery. i have 3 buttons under a <div>.

<div class="button1">
        <input type="button" value="one" id="One" onclick= "location.href='index.html'"/> 
        <input type="button" value="two" id="Two" onclick="location.href='index.html'" />
        <input type="button" value="three" id="Three" onclick="location.href='index.html'" />
 </div> 

if i click on button 1 i need to get value for a button 1. i dunno how exactly get the value of this.

here is my js.

$(document).ready(function() {
    $('.button1').click(function() {
        var text = $(this).text();
        $("input").val(text);
        });
});

i know this js script i wrote as wrong. because am getting values as "one,two,three".

thanks in advance.


回答1:


Like any other input, to get the value of a button use .val():

$('input:button').click(function() {
    alert($(this).val());
});​

http://jsfiddle.net/3QDM5/

I'm not sure exactly what you're trying to do with your script though!




回答2:


use attr http://api.jquery.com/attr/

$(document).ready(function() { 
    $('#button1').click(function() { 
        var text = $(this).attr('value'); 
        $("#input").val(text); 
    }); 
}); 



回答3:


example :

<input type="button" value="one" id="One" onclick= "click(this.value)'"/>

where click(this.value) is function on javascript

function click(x)
{
    //x is value from onclick button
}


来源:https://stackoverflow.com/questions/9721178/get-value-for-a-input-button-using-jquery

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!