我如何使用contains来搜索占位符以搜索单词“name”并设置值而不是搜索占位符的确切值。
这是html:
<input autocorrect="off" placeholder="full name here" id="order_billing_name" name="order[billing_name]" size="30" class="" type="text">
我如何使用contains来搜索“name”并设置值而不是搜索确切的值“此处的全名”
$('[placeholder="full name here"]').val('name here');
答案 0 :(得分:1)
您可以使用属性值包含选择器
$("[placeholder*=name]").val("name here")
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js">
</script>
<input autocorrect="off"
placeholder="full name here"
id="order_billing_name"
name="order[billing_name]"
size="30"
class=""
type="text">