gpt4 book ai didi

javascript - 如何将数据从网站发布或传递到其中的对象元素?

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

我试图以某种方式将数据从网站传递到其中包含的对象元素。一个简单的例子:

这是一个 test1.html 示例,位于 https://domain.tld/folder1/test1.html

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">

$( document ).ready ( function () {
$("#templates").on("change", function () {
[.... here I want to pass data to object element ...]
$("#test").show();
});
}
);

</script>
</head>
<body>

<label>Open object </label>
<select id="templates name="templates">
<option value="1">Template1</option>
<option value="2">Template2</option>
<option value="3">Template3</option>
</select>
<div id="test" style="display: none;">
<object type="text/html" data="https://domain.tld/folder2/editor.php">
</object>
</div>
</body>
</html>

当选择元素更改时,测试 div 元素会全屏打开。我想将选定的值传递给“https://domain.tld/folder2/editor.php”html代码,因为我需要根据选定的值对其进行一些自定义详细信息。可能吗?

希望你能理解我。非常感谢你的帮助。约翰

最佳答案

是的,您可以使用 AJAX:

var dataIn = { someKey : "someValue" };
$.ajax({
url : "https://domain.tld/folder2/editor.php",
data : dataIn,
success : function ( result ) {
// do something with the response
}
});

$.get$.post 取决于您后端的需求。

关于javascript - 如何将数据从网站发布或传递到其中的对象元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42491824/

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