Function only defined but immediately executed anyway(只定义了函数,但无论如何都会立即执行)
问题描述
我的文件 ajaxrequest.js 中有一段简短的 javascript 代码有问题.这里是:
I'm having trouble with a short javascript code in my file ajaxrequest.js . Here it is :
function afficher () {
$.post('requete_affichage.php', function (data) {
$('#name-data').text(data); });
}
$('#bouton2').on('click', afficher());
所以问题是,只要我在浏览器中点击localhost",该函数就会立即执行并将数据插入到我的 index.html 页面的 div#name-data 字段中,而不是等待我点击#bouton2 这样做.有什么想法吗?
So the problem is the function immediately executes and inserts the data in the div#name-data field of my index.html page as soon as i hit "localhost" in my browser, and doesn't wait for my click on #bouton2 to do so. Any idea ?
推荐答案
通过在函数后面加上方括号,您可以告诉它立即执行.要将函数引用分配给单击处理程序,请删除括号:
By including the brackets after the function you are telling it to execute immediately. To assign the function reference to the click handler, remove the brackets:
$('#bouton2').on('click', afficher);
这篇关于只定义了函数,但无论如何都会立即执行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:只定义了函数,但无论如何都会立即执行
基础教程推荐
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01