我的功能是 function myFun(val){ alert(val); } 最佳答-6ren">
gpt4 book ai didi

javascript - "onfocus"事件不适用于动态附加的输入

转载 作者:行者123 更新时间:2023-11-28 04:11:29 26 4
gpt4 key购买 nike

当我动态附加输入时,onfocus 函数不起作用。

我的代码

 $i=1;
<?php for($i=0;$i<=5;$i++){?>
<input type="text" onfocus="myFun(<?php echo $i?>)">
<?php}?>

我的功能是

function myFun(val){
alert(val);
}

最佳答案

如果你可以使用 jQuery,你可以这样做。动态添加的输入将以这种方式工作并获得焦点。

//******************************************************************
// JAVASCRIPT
//******************************************************************

// some function to do after focus.
// takes a value variable called val
function myFun(val){
console.log(val);
}

// If you use the on method this way even if you
// add inputs after the DOM is loaded, then any
// inputs with the class name "myInput" will
// pass the focused value of the input to the myFun
// function above.
$("body").on("focus", ".myInput", function(){
myFun($(this).val());
});
//******************************************************************
// PHP
//******************************************************************
<?php
for($i=0;$i<=5;$i++){
echo "<input type='text' class='myInput' value='test value here => ".$i."'>";
}
?>

关于javascript - "onfocus"事件不适用于动态附加的输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46234435/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com