新手到php并试图对这个简单的东西进行排序。
当我点击此quote-button
时,它会将我重定向到实际页面而不是本地主机。
$('#quote-button').click(function(){
location.href="quote-page.php";
return false;
});
所以这样做:www.website.com/quote-page.php
而不是localhost/quote-page.php
我新安装了XAMPP并使用了Apache和MySQL。
我已使用此https://stackoverflow.com/a/30425515/3770885来整理我的localhost重定向到实时网站。只是这个按钮点击事件导致问题。