比如:console.log(form);
console.log(form);
我想获取 action 怎么获取
action
form.attr("action") 获取不到
form.attr("action")
学习是最好的投资!
楼主你控制台打出来的是一个原生JS对象,获取属性应该用form.getAttribute('action')。attr是jQuery对象才能调用的方法。
form.getAttribute('action')
就比如说SegmentFault的form:
$('.header-search').attr('action') // "/search" $('form').attr('action') // "/search"
楼主你控制台打出来的是一个原生JS对象,获取属性应该用
form.getAttribute('action')
。attr是jQuery对象才能调用的方法。就比如说SegmentFault的form: