在我的PHP應用程序,我有一個jQuery,但它不運行,其他部分做得很好,而且我確定它在我的主機運行良好。它就像這樣在我的html:<script src="jquery.min.js"></script>
所以我猜我的app.yaml有問題。jquery不運行在PHP應用程序
以下是我的app.yaml:
application: *
version: 1
runtime: php
api_version: 1
handlers:
- url: /(.*\.(htm$|html$|css$|js$))
static_files: photo/\1
upload: photo/(.*\.(htm$|html$|css$|js$))
- url: /jquery.min.js
static_files: photo/\1
upload: photo/jquery.min.js
- url: /index.html
static_files: photo/\1
upload: photo/index.html
- url: /albums/(.*\.(ico$|jpg$|png$|gif$|swf$))
static_files: photo/albums/\1
upload: photo/albums/(.*\.(ico$|jpg$|png$|gif$|swf$))
- url: /(.+)
script: photo/\1
secure: always
- url: /photostack.php
script: photo/photostack.php
secure: always
我是一個biginner,所以也許它只是一個小問題。但是我爲它工作了好幾天,仍然找不到方法。請幫助我。這是我的網站:https://nicol06215.appspot.com/index.html
它應該顯示窗口,當你點擊列。
你在控制檯中看到了什麼? – SLaks
它可以在控制檯中使用。 – user2924206