我正在用 jquery 脚本编写我的页面,然后写成这样$.
,$(
我的示例代码就像这里
<script src="http://code.jquery.com/jquery-latest.js"></script>
function dome(){
$.ajax({
async: false,
type: 'POST',
url: 'test.php',
success: function(data) {
alert('ok');
}
});
}
但我也必须使用原型库,然后添加代码<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/prototype/1.7.1.0/prototype.js"></script>
我上面的功能不再起作用 firebug 的错误报告是TypeError: $.ajax is not a function
那么解决这个问题的唯一方法是更改$.ajax({
为jQuery.ajax({
你知道我怎样才能像以前一样短地编写代码($.)吗?