我正在尝试查找名称以type
. 实际名称将是Ntype
N 所在的位置0-9
ie 0type
。
如何轻松选择名称以 type 结尾的正确输入?
$(this).find("input[name='type']").val()
我正在尝试查找名称以type
. 实际名称将是Ntype
N 所在的位置0-9
ie 0type
。
如何轻松选择名称以 type 结尾的正确输入?
$(this).find("input[name='type']").val()
利用$=
$(this).find("input[name$='type']").val()
$=
^=
以
*=
包含 结尾
要记住这种语法,考虑正则表达式行锚和量词可能会很有用
这应该做你想要的:
$(this).find("input[name$='type']").val();
此页面可能对将来的参考有用: http: //api.jquery.com/category/selectors/
$(this).find("input[name$='type']").val()
你可以这样做
$(this).find("input[name$='type']").val()