作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图以某种方式将数据从网站传递到其中包含的对象元素。一个简单的例子:
这是一个 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/
我是一名优秀的程序员,十分优秀!