我有一个模型,我试图在弹出窗口中将函数作为参数传递...但是模型函数没有采用参数...在下面提供我的代码...
我正在尝试在此模型cnfrmMsgMdlEs中传递函数
<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("p").click(function(){
$(this).hide();
});
});
</script>
</head>
<body>
<p>If you click on me, I will disappear.</p>
<p>Click me away!</p>
<p>Click me too!</p>
</body>
</html>