html 的setTimeoutで引数を渡す

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 的setTimeoutで引数を渡す相关的知识,希望对你有一定的参考价值。

<!doctype html>
<html lang="en">
<head>
	<meta charset="UTF-8" />
	<title>Document</title>
</head>
<body>

<script>
jQuery(function($){
	$('.trigger').onclick(function(){

		function alertFnc($(this)){
			alert($(this));
		}
		setTimeout(alertFnc(),300);


		var target = $(this);
		setTimeout(function(){
		//ここに処理を記述
		//$(this)をsetTimeout関数に渡す時は第三引数に渡す
		},300,target);

	});
});

</script>


</body>
</html>

以上是关于html 的setTimeoutで引数を渡す的主要内容,如果未能解决你的问题,请参考以下文章

markdown factory_botで引数を受け取って处理する

markdown ジェネレータに値を渡す

sh 2つの引数を取るxargs的

html 谷歌検索にキーワードをパラメータで渡す

html 谷歌検索にキーワードをパラメータで渡す

html 谷歌検索にキーワードをパラメータで渡す