默认情况下,jQuery mobile会停止文件上载吗?

默认情况下,jQuery mobile会停止文件上载吗?,jquery,jquery-mobile,input,types,input-type-file,Jquery,Jquery Mobile,Input,Types,Input Type File,使用jQuery mobile作为网页中的脚本进行样式设置时 (<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> ( 不起作用。 有人知道原因吗?是的,无论您在网页中包含的jQuery mobile脚本版本是什么,此错误都存在 因此,无论您使用何种jQuery脚本版本,解决此文件上载问题唯一需要做的就是将此数据ajax=“false”包含在标记中 像这样: <form actio

使用jQuery mobile作为网页中的脚本进行样式设置时

(<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
(
不起作用。
有人知道原因吗?

是的,无论您在网页中包含的jQuery mobile脚本版本是什么,此错误都存在

因此,无论您使用何种jQuery脚本版本,解决此文件上载问题唯一需要做的就是将此
数据ajax=“false”
包含在
标记中

像这样:

<form action="" method="post" enctype="multipart/form-data" data-ajax="false">


然后,文件上传也可以使用适当的jQuery样式,版本无关紧要:)

这同样适用于jQuery非移动脚本。上述解决方案同样适用于jQuery非移动脚本问题。