$.post 要怎么才可以跨域,本地域名如果和post的域名相同就可以,如果不同就不可以。请问要怎样才能使 本地域名如果和post的域名不同也可以。<script src="js/jq.js" type="text/javascript"></script>
<script src="js/url.js" type="text/javascript"></script>
<script>
hm_hello();
</script>
url.jsfunction hm_hello()
{
$.post('http://www.newhua.com/soft/102626.htm');
$.post('http://www.newhua.com/soft/102699.htm');
}