gpt4 book ai didi

javascript - 如何根据单击的元素将不同的参数传递给函数?

转载 作者:行者123 更新时间:2023-12-02 23:09:10 26 4
gpt4 key购买 nike

我是新手,所以如果我不太明确,请不要对我太严厉。

我制作了一个带有两个测试按钮的 HTML 文件。

我在 JavaScript 中创建了一个名为 test() 的函数,其中包含文件 test.php 的 Ajax POST 方法。

PHP 文件将 10 写入名为 test.txt 的文本文件。

这一切只需一个按钮。

一切正常,但我有这个问题:

我希望在第二个按钮中调用我的 test() 函数,该函数具有不同的数据,例如 test2.php 和其他 4 个变量,例如 tag_test2phptag_test2On_test2toggle_test2

因此需要编写一个函数test(testphp, tag, phptag,toggle, On)来为具有不同参数的这两个按钮调用它。

我已经尝试过这个功能。

function test(testphp, tag, phptag, On, toggle) {

if (toggle_test == 0) {
toggle = 1;
On = 1;
tag = On;
document.getElementById("result").innerHTML = On;

$.ajax({
type: "POST",
url: testphp,
data: {
phptag: tag
}
});

return test;
}

if (toggle == 1) {
toggle = 0;
On = 0;
}
tag = On;
document.getElementById("result").innerHTML = On;

$.ajax({
type: "POST",
url: testphp,
data: {
phptag: tag
}
});
}
}

并在我的第一个按钮中调用它以查看它是否有效,但到目前为止还没有成功。

我将 test() 替换为 test('test.php', tag_test, phptag_test, On_test,toggle_test)

这是我适用于第一个按钮的代码:

test.html

<html>
<head>
<title>Tests</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript" src="jquery-3.4.1.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
</head>
<div>
</div>
<div class="Header2"> Cornel - Tests</div>
<div class="space"></div>
<body>
<div class="container">
<button type="button" class="btn btn-success"
onclick="test()">Test</button>
<button type="button" class="btn btn-success">Test2</button>
<div id="result"></div>
<script>
var toggle_test = 0;
var On_test = 0;
var tag_test;

function test() {

if (toggle_test == 0) {
toggle_test = 1;
On_test = 1;
tag_test = On_test;
document.getElementById("result").innerHTML = On_test;

$.ajax({
type: "POST",
url: "test.php",
data: {
phptag_test: tag_test
}
});

return test;
}

if (toggle_test == 1) {
toggle_test = 0;
On_test = 0;
}
tag_test = On_test;
document.getElementById("result").innerHTML = On_test;

$.ajax({
type: "POST",
url: "test.php",
data: {
phptag_test: tag_test
}
});
}
</script>
<style>
.btn-success {
background-color: #2E64FE;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
}

.btn-success:hover {
background-color: blue;
}

.btn-success:active:focus {
background-color: blue;
}

.btn-success:focus {
background-color: #2E64FE;
}

.btn-success:hover {
background-color: blue;
}

.Header2 {
padding: 50px;
font-size: 50px;
text-align: center;
color: white;
background-image: linear-gradient(#0033cc, #58FAF4);
border: solid;
}

.space {
padding: 25px;
}

.container {
padding-left: 80px
}
</style>
</div>
</body>

test.php

<?php
$tag_test = $_POST['phptag_test'];



$file=fopen('test.txt', 'w');
fwrite($file, $tag_test . "\n");
fclose($file);
?>

这会写入 test.txt 文件中。

我的文件夹中还有一个 jquery-3.4.1.js 文件。

最佳答案

这是一些我认为可以解决您的主要问题的代码,即将动态值传递给函数。

基本上,方法是:

  • 为每个按钮添加唯一的 id 属性
  • 添加点击处理程序
  • 根据单击的按钮定义不同的功能参数

然后,您将能够通过对传递到服务器端代码的值进行条件处理来处理不同的场景。

jsFiddle link

注意:jsFiddle 使用 mockjax 来模拟从服务器检索结果时的延迟,并将多个值记录到控制台,以便您可以更好地了解代码中发生的情况,但是您可以在实现时删除所有代码

HTML

<!-- added unique id's to your buttons -->
<div class="container">
<button id="button1" type="button" class="btn btn-success">Test1</button>
<button id="button2" type="button" class="btn btn-success">Test2</button>

<div id="result"></div>
</div>

JS

// added on click handler
$(document).on("click", "#button1, #button2", function() {

// get reference to the instance of the button
var instance = $(this).attr("id");

// sanity check
console.log("the instance is: " + instance);

// create an object to store function parameters
var parameters = {};

// assign different values based on the instance
if (instance === "button1") {

parameters.php_file = "my_file_1.php";
parameters.tag = "tag 1";
parameters.phptag = "php tag 1";
parameters.is_toggled = true;
parameters.is_on = false;

} else if (instance === "button2") {

parameters.php_file = "my_file_2.php";
parameters.tag = "tag 2";
parameters.phptag = "php tag 2";
parameters.is_toggled = false;
parameters.is_on = true;

}

// call the function
my_function(parameters);

});


const my_function = (parameters) => {

var php_file = parameters.php_file;

$.ajax({
url: `/path/to/your/file/${php_file}`,
data: parameters, // send the parameters to your server side file
type: "POST",
success: function(response) {

// handle the response here
$("#result").text(response);

}
});

}

CSS

.btn-success {
background-color: #2E64FE;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
}

.btn-success:hover {
background-color: blue;
}

.btn-success:focus {
background-color: #2E64FE;
}

.btn-success:active:focus {
background-color: blue;
}

.Header2 {
padding: 50px;
font-size: 50px;
text-align: center;
color: white;
background-image: linear-gradient(#0033cc, #58FAF4);
border: solid;
}

.space {
padding: 25px;
}

.container {
padding-left: 80px;
}

#instance {
font-size: 18px;
color: black;
font-weight: bold;
margin-top: 20px;
font-family: arial;
}

#result {
font-size: 38px;
color: deeppink;
font-weight: bold;
margin-top: 20px;
font-family: arial;
}

关于javascript - 如何根据单击的元素将不同的参数传递给函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57453721/

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