我希望有人帮助我。我在我的html文件中创建了一个表单,就像
一样<form action="deneme.php" method="post">
<input type="text" name="searchtxt" id="searchtxt" placeholder="Write something to search"></br>
<div align="center">
<input type="submit" name="locationbtn" data-icon= "search" data-iconpos="right" data-theme="a" data-inline="true" value="Find Location"></button>
</div>
</form>
当我有这个并且我点击提交时,我的php文件没有加载GoogleMap。当我有
<button href="#deneme.php" type="button" name="denemebtn" data-icon= "search" onclick="location.href='deneme.php'" data-iconpos="right" data-theme="a" data-inline="true">Find Location</button>
我的地图有效,但我不能在我的php文件中使用searchtxt的值。无论如何,如果没有<form>
将searchtxt放入我的deneme文件中,或者有没有办法让googlemap与<input type="submit">
一起使用?
感谢您的关注。