本文介绍了Jquey的功能不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Jquey fonction not working

 < script     src   =  Scripts / jquery-1.4 .1.js    type   =   text / javascript >  < /   script  >  
< script type = text / javascript >
function myFunction(filename){
$ .ajax({
type: GET
url: Location \\ + filename + 。xml
dataType: xml
成功:函数(xml){
alert( );
}
< / script >





它不起作用

解决方案




Jquey fonction not working

<script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script>
<script type="text/javascript">
function myFunction(filename) {
            $.ajax({
                type: "GET",
                url: "Location\\"+filename+".xml",
                dataType: "xml",
                success: function (xml) {
		       alert("yes");
            }
</script>



it it doesn't work

解决方案




这篇关于Jquey的功能不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 11:37