时间:2021-07-01 10:21:17 帮助过:34人阅读
注意:
首先要确定你页面中有几个 name="price" 的input框,因为有些弹窗内容是写在页面中的,然后再通过append把页面中的这个input框追加到弹窗中,导致页面中有两个相同的input框;同理追加指定id的元素,也要看看页面中有没有相同的id
通过jquery的方法获取值
$('input[name="price"]').val(); $('input[name="price"]').attr('value'); $('input[name="price"]')[0].value; $('input[name="price"]').prop('value'); $('input[name="price"]').get(0).value;
通过js的方法获取值
var inputVal = document.getElementsByName('price')[0].value; var inputVal = document.getElementsByName('price').item(0).value; var inputValue = document.getElementById('price').value;
当然方法不止这些,具体看喜欢来选择。。。。
给动态生成的按钮绑定click事件
$('body').on('click', '.btn', function() { // ……});
相关推荐:
jquery append与appendTo用法分析
Jquery append方法使用中的问题
jQuery方法解析--append()
以上就是jquery如何获取append追加的input值的详细内容,更多请关注Gxl网其它相关文章!