我的javascript文件无效。我无法在检查员身上看到它。我认为它根本没有加载。
我的档案中遗漏了什么?
这是我的整个js文件:
private static SheetsService AuthorizeGoogleApp()
{
UserCredential credential;
using (var stream =
new FileStream("client_secret.json", FileMode.Open, FileAccess.Read))
{
string credPath = System.Environment.GetFolderPath(
System.Environment.SpecialFolder.Personal);
credPath = Path.Combine(credPath, ".credentials/sheets.googleapis.com-dotnet-quickstart.json");
credential = GoogleWebAuthorizationBroker.AuthorizeAsync(
GoogleClientSecrets.Load(stream).Secrets,
Scopes,
"user",
CancellationToken.None,
new FileDataStore(credPath, true)).Result;
Console.WriteLine("Credential file saved to: " + credPath);
}
// Create Google Sheets API service.
var service = new SheetsService(new BaseClientService.Initializer()
{
HttpClientInitializer = credential,
ApplicationName = ApplicationName,
});
return service;
}
我将它添加到.info文件中。
代码应该有效,我是从codepen得到的。我想文件中可能缺少一些东西,一些声明,比如html中的doctype。
(此代码移动一个滑块(在menuitems下面的一行。)
答案 0 :(得分:0)
第一个问题,是脚本加载了jquery吗?
第二,你应该把它包裹在document.ready。
$(function() {
$(".sf-main-menu li").click(function() {
...
});
});
这将检查是否已加载整个DOM,因为否则您可能会将事件侦听器绑定到尚不存在的DOMNode。
答案 1 :(得分:0)
我解决了! :)
我写道:
jQuery(function ($) {
而不是
$(document).ready(function(){
现在它正在运作。
(我不确定为什么我的问题会得到这么多减分......)