我不知道如何使用数组包含的名称调用所有输入的函数。我已经尝试过了:
var names = ["name1", "name2"];
$(document).ready(function(){
$('input[name=names[0]').on("mouseenter", function() {
$(this).attr('title', 'This is the hover-over text');
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<h2>Head</h2>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<input type="text" name="name1"> <!--This should have title-->
<input type="text" name="name2"> <!--This should have title-->
<input type="text" name="name3"> <!--This should not have title--
我试图在那里找到第一个元素,但是我什至不能做到。我是jquery(和js)的新手,因此解决方案可能很明显。
答案 0 :(得分:2)
您只需在数组上运行一个循环,并为每个包含输入名称的数组元素添加eventlistner。
$(document).ready(function(){
$.each(names , function(index, item) {
$("input[name="+ item +"]").on("mouseenter", function() {
$(this).attr('title', 'This is the hover-over text');
});
});
});
答案 1 :(得分:1)
使用.filter()
过滤jquery选择器,然后向其添加事件侦听器。
var names = ["name1", "name2"];
$("input").filter(function(){
return names.indexOf($(this).attr("name")) != -1;
}).on("mouseenter", function() {
$(this).attr('title', 'This is the hover-over text');
});
var names = ["name1", "name2"];
$("input").filter(function(){
return names.indexOf($(this).attr("name")) != -1;
}).on("mouseenter", function() {
$(this).attr('title', 'This is the hover-over text');
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="text" name="name1" value="name1">
<input type="text" name="name2" value="name2">
<input type="text" name="name3" value="name3">
还可以将事件侦听器添加到所有输入,并在回调函数中检查其名称。
var names = ["name1", "name2"];
$("input").on("mouseenter", function() {
if (names.indexOf($(this).attr("name")) != -1){
$(this).attr('title', 'This is the hover-over text');
}
});
var names = ["name1", "name2"];
$("input").on("mouseenter", function() {
if (names.indexOf($(this).attr("name")) != -1){
$(this).attr('title', 'This is the hover-over text');
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="text" name="name1" value="name1">
<input type="text" name="name2" value="name2">
<input type="text" name="name3" value="name3">
答案 2 :(得分:1)
您的问题似乎是您使用选择器的方式。它不是将其作为数组的一部分而不是字符串来读取。
$(document).ready(function(){
var names = ["name1", "name2"];
// interpolation
$(`input[name=${names[0]}]`).on("mouseenter", function() {
$(this).attr('title', 'This is the hover-over text');
});
// or without interpolation
$('input[name=' + names[1] + ']').on("mouseenter", function() {
$(this).attr('title', 'This is different hover-over text');
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="text" name="name1" />
<input type="text" name="name2" />
答案 3 :(得分:0)
尝试一下:
$("input[name^='name'").on("mouseenter", function() {
...
引用URL:https://api.jquery.com/attribute-starts-with-selector/
答案 4 :(得分:0)
您可以执行以下操作:
var names = ["name1", "name2"];
//Iterate over all the text box inputs in your HTML
document.querySelectorAll('[type=text]').forEach(function(el) {
//Check if el name attribute is in the array
if (names.indexOf(el.name) > -1) {
//If so, add a change event listener
el.addEventListener('keyup', function(e) {
//Set the title attribute to something new
updateTitle(el, e);
});
}
});
function updateTitle(el, e) {
el.title = e.target.value;
console.log(`Updated ${el.name}: title attribute changed to ${el.title}`);
}
<h2>Head</h2>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<input type="text" name="name1">
<!--This should have title-->
<input type="text" name="name2">
<!--This should have title-->
<input type="text" name="name3">
<!--This should not have title-->