作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在使用 jQuery 加载页面后发送发布数据?
例如
$( "#target" ).click(function() {
$('#thetag').load(page.php, function(){
$.ajax({
type: "POST",
url: "page.php",
data: {data: "hi world"},
success: function(result) {
console.log('good');
}
});
});
});
</div id="thetag">
page.php
<?php echo $_POST['data'] ?> ==== 'hi world'
</div>
我需要在点击#target
后加载page.php
文件,同时通过ajax post发送该数据;在 #thetag
最佳答案
只需使用您的 load()
发送数据即可要求。如果没有更多信息,向同一网址发出另一个请求似乎没有意义
$('#thetag').load(page.php, {data: "hi world"}}
关于javascript - 我如何在 jquery 中加载页面后发送数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35139214/
我是一名优秀的程序员,十分优秀!