我的所有问题是我想从我的网站发送数据到这个网站的页面:
http://www.womo.com.au/external-review.php?id=MDAxMTcyNjcw
我怎么能这样做?这可能吗?因为我看到这个网站在javascript中形成验证,并且不知道如何处理它?</ p>
感谢。
答案 0 :(得分:2)
这就是你如何做到这一点,只需制作一个testPosting.html
文件,
使用发送所需的所有输入创建表单。
查看已发布字段的屏幕截图。
填写完表格后,我会提交此数据。
现在您可以看到已发布的14个字段,因此您需要制作13个输入和1个textarea。
使用提交按钮的点击功能,例如
$('#buttonID').click(function(e){
e.PreventDefault();
//store values of inputs in a variable
var data = {
FirstName = $('#FirstName').val(); // you can more better then that if you know how
//Add the rest of the data
};
});
然后你可以使用jQuery Ajax发送数据。
$.ajax({
url: "http://www.womo.com.au/external-review.php?id=MDAxMTcyNjcw",
data:data, //this data will be the variable that you create in which all the forms inputs datas are stored.
type: "POST"
}).done(function(result) {
//do stuff if some result has returned
});
我刚才提出了粗略的想法。 哦,你必须在脚本上使用这行JS JS scrips
jQuery.support.cors = true; // force cross-site scripting (as of jQuery 1.5)
我的代码并不完美,但你知道我想说的是什么,你可以从这里开始,做你自己的东西..