jquery如何获取input中的内容

jquery如何获取input中的内容,第1张

$(this,"ipt")

改为

$("ipt",$(this))

或者

$(this)find("ipt")

即可

看来你对jq的选择器用法还是不够理解啊

jquery代码

$("myclass")each(function(){

$("#sub",this)click(function(){

// alert(1)

alert($(this)parents("tr")html());

});

});

});

表格html代码

<table border="1">

<tr class="myclass">

<th>Month</th>

<th>Savings</th>

<th><input id="sub" type="submit" ></input></th>

</tr>

<tr class="myclass">

<td>January</td>

<td>$100</td>

<th><input id="sub" type="submit" ></input></th>

</tr>

</table>

通过$(this)获取所点击的按钮,

$(this)parents(“tr”)获取按钮所在行,

$(this)parents(“tr”)find(“”)text()获取按钮所在行class为的元素的值。

a文本框id设置为a,b设为b,c设为c

然后

documentgetElementById("c")value=documentgetElementById("a")value+documentgetElementById("b")value

即可

以上就是关于jquery如何获取input中的内容全部的内容,包括:jquery如何获取input中的内容、jquery表格行进行编辑 如何获取当前的行数据、如何用js或者jq获取datalist里面的表格的文本框的值等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9832679.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-02
下一篇 2023-05-02

发表评论

登录后才能评论

评论列表(0条)

保存