jquery
我的函数有问题,.load()
我想从输入字段中获取值php
,但是如果您在字段中输入空格,则什么也得不到
这是我的短代码 html
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
</head>
<body>
<input type="text" onkeyup="$('#result').load('test.php?str='+$(this).val()).hide().fadeIn();" />
<div id="result" ></div>
</body>
</html>
和 test.php
<?php
echo $_GET[str];