通过 URL (WHOIS) 输入更改时更改 div 内容
我正在尝试制作可以显示域名可用性的 WHOIS 脚本。我已经把PHP搞定了。我想要的只是 jQuery 部分,它可以检测输入内容的变化,向页面发送 POST 请求并在某个 div 中显示页面内容。
这是我的 HTML
<div class="input">
<input type="text" name="domain" placeholder="monsiteweb.com"/>
</div>
<div id="result">
</div>
我现在拥有的 jQuery(不工作)
<script>
$(document).ready(function(){
$("input[name=domain]").change(function () {
alert("Changed!");
});
</script>
非常感谢
I'm trying to make WHOIS script that can display the availability of a domain name. I already have the PHP done. All I want is the jQuery part that could detect the change of the content of an input, send a POST request to a page and display the content of the page in a certain div.
Here's my HTML
<div class="input">
<input type="text" name="domain" placeholder="monsiteweb.com"/>
</div>
<div id="result">
</div>
The jQuery I have right now (not working)
<script>
$(document).ready(function(){
$("input[name=domain]").change(function () {
alert("Changed!");
});
</script>
Thanks a lot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
基本上:
然后让您的 PHP 脚本检查
$_POST['query']
是否有用户的输入。basically:
then have your PHP script check
$_POST['query']
for the user's input.您缺少一个右括号:
另外,不要忘记您只有在离开现场后才会收到警报。
You are missing one close brackets there:
Also, do not forget that you only get the alert after leaving the field.
您打开了一些未关闭的括号:
You have opened some brackets, that are not closed: