我正在创建一个简单的Google日历小工具,内容类型为html。当用户在任何特定日期点击小工具图标时,我想显示用户的日期和名字,无论如何,我是否可以在小工具的HTML内部获取JavaScript中的信息?
<?xml version="1.0" encoding="UTF-8"?>
<Module>
<ModulePrefs title="Google Calendar9" />
<Require feature="google.calendar-0.5"/>
<Content type="html"><![CDATA[
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Calendar Test</title>
</head>
<body>
<script type="text/javascript">
// I need to get User's first name as well as the selected date
</script>
</body>
</html>
]]></Content>
</Module>
谢谢, badallen