我需要在我创建的 SVG 中使用 ASP.NET 服务器端代码。为此,我创建了一个 .aspx 文件并插入了 SVG 代码,如下所示:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MyPage.aspx.cs"
Inherits="MyApp.MyPage" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="700px" height="700px" onload="initialize()">
<script type="text/ecmascript">
<![CDATA[
SCRIPT HERE
<% SERVER CODE %>
]]>
</script>
<defs>
<style type="text/css">
<![CDATA[
SVG STYLES
]]>
</style>
</defs>
SVG CODE
<% SERVER CODE %>
</svg>
这很好用,我可以使用 <% %> 并将服务器端逻辑添加到我的 SVG 中。但是,我需要使用隐藏字段从 JavaScript 中获取信息。
一旦我将此代码包装在html中并添加表单等;SVG 特定的 JavaScript 将中断,即 createSVGPoint() 函数。SVG 仍然可以正确渲染...
有谁知道解决方法或将服务器端逻辑添加到 SVG 的更好方法?
编辑:更新示例
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Test</title>
<script type="text/ecmascript" language="ecmascript">
var root;
var svgRoot;
var xmlns = "http://www.w3.org/2000/svg";
var mousePoint;
var transformedPoint;
function initialize() {
root = document;
svgRoot = document.documentElement;
//alert("hello"); --Works
mousePoint = svgRoot.createSVGPoint();
transformedPoint = svgRoot.createSVGPoint();
alert("hello"); -- Broken
}
</script>
<style type="text/css">
.Interactable
{
cursor:pointer;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<svg id="mySVG" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="700px" height="700px" onload="initialize()">
<g id="WorkSpace" transform="matrix(1, 0, 0, -1, 350, 350)">
</g>
</svg>
</div>
</form>
</body>
</html>
另外,尝试在 pageLoad() 中添加内容类型
Response.ContentType = "image/svg+xml";
Response.ContentType = "application/xhtml+xml";