xmlpractical4_column2.html
来自「Ajax tutorial archive」· HTML 代码 · 共 34 行
HTML
34 行
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>
Introduction to Ajax Tutorial
</title>
</head>
<body>
<p class="main">
In many instances walking the DOM tree, bloats your code and
that is not good, particularly when we don't have to do
that. By using namespaces and existing xhtml technologies we
can leverage the best out of both worlds and get highly
functional Web applications, while avoiding code bloat.
</p>
<p class="main">
In the next example we are going to trigger a simple show /
hide event from the XML file. There are two lines in the xml
file (examples 5 folder) that are important to look at.
</p>
<p class="code">
<strong>Line 4:</strong> <ul
xmlns="http://www.w3.org/1999/xhtml"
id="eddies">
</p>
<p class="code">
<strong>Line 13:</strong> <a href="#"
onmousedown="ajaxManager('hide_menu')">Hide
Menu</a>
</p>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?