gpt4 book ai didi

javascript - 在标记内调用 Javascript 函数时遇到问题

转载 作者:行者123 更新时间:2023-12-02 20:10:20 26 4
gpt4 key购买 nike

我在运行 Javascript 时遇到问题。

我的 javascript 位于我的主文件(布局页面)的 body 标记内

<script type="text/javascript">

var cssdropdown = {
startchrome2: function() {
document.getElementById("P3").innerHTML = "3 is complete";
}
}

</script>

我尝试按如下方式调用 startchrome2 函数:

<body onload="cssDropDown.startchrome2()">

我尝试在 getElementById 调用中访问的元素也位于正文中:

<p id="P3">This is a paragraph.</p>

当前显示“这是一个段落”。为什么我的 JavaScript 无法将其更改为“3 已完成”?

我已经在这个问题上闲逛了一段时间了,这非常令人沮丧。我确信这是一个愚蠢的错误。

我正在使用 Visual Studio 2010,以下是页面顶部的声明:

<%@ Master Language="C#" AutoEventWireup="true" CodeFile="Site.master.cs"
Inherits="SiteMaster" %>

<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit"
TagPrefix="asp" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">

最佳答案

您的大小写错误,请尝试:

<body onload="cssdropdown.startchrome2()">

关于javascript - 在标记内调用 Javascript 函数时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7011957/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com