作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想获取文本字段中的数字并通过 Url 方法 GET 发送;
$(document).ready(function () {
$("#go").click(function() {
var n = document.getElementById('nombre').value;
alert("Chess.php?number=9");
$('#chess').load("Chess.php?number="+n);
});
值:
<input type="text" name="nombre" id="nombre">
最佳答案
使用下面的代码重试:
$(document).ready(function () {
$('#go').click(function() {
$.get('Chess.php', { number: $('#nombre').val() } );
});
});
PS:更奇怪的是名为 nombre 的属性值和名为 number 的字段。这个也改一下吧。其他提示是不要使用大写字母作为 url,仅使用“chess.php”。
希望能帮到你。
关于javascript - 使用 Ajax 获取值并发送 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20273685/
我是一名优秀的程序员,十分优秀!