Table of Contents
Reply to discussion (solution)
Home Web Front-end HTML Tutorial Please tell me the meaning of several XHTML tags and attributes that others have made before_html/css_WEB-ITnose

Please tell me the meaning of several XHTML tags and attributes that others have made before_html/css_WEB-ITnose

Jun 24, 2016 pm 12:23 PM

This post was last edited by NotOnlyForShe on 2013-08-31 14:52:32

xhtml

If there are any doubts in the content, please note them.
    <xhtml:div id="visible-element" style="height:100%;width:100%;overflow: hidden;">       <xsl:if test="/root/flag = 'true'"> <!-- 这个test内容参数/root/flag是哪来的? -->        <xhtml:table style="width:100%;overflow: hidden;">           <xsl:for-each select="/root/data/*/tasks/SA_Task">  <!-- 这个select的值是怎么回事?求解释 -->            <xsl:variable name="onclickvalue">justep.Portal.openWindow('              <xsl:value-of select="fXM"/>', '              <xsl:value-of select="$url"/>', '              <xsl:value-of select="sCreatorFID"/>');            </xsl:variable>  <!-- $url哪来的?-->            <tr>               <td style="width:12px"/>                <td class="className" width="100%">                 <nobr>                   <a class="className">                     <xsl:attribute name="href">javascript:void(0)</xsl:attribute>                      <xsl:attribute name="onclick">                       <xsl:value-of select="$onclickvalue"/> <!-- select值是哪来的 -->[/color]                    </xsl:attribute>                      <xsl:value-of select="fXM"/>                   </a>                 </nobr>               </td>                <td style="width:1px"/>                <td style="width:61px" class="className"/>                <td style="width:1px"/>                <td style="width:63px;" class="className">                 <nobr>                   <xsl:value-of select="format-dateTime(fQDRQ, '[Y0001]-[M01]-[D01]')"/>                 </nobr>               </td>             </tr>           </xsl:for-each>         </xhtml:table>       </xsl:if>     </xhtml:div> 
Copy after login





The entire layout of this page made by someone else below, I am afraid that the code I want to learn is not fully listed above.
<?xml version="1.0" encoding="utf-8"?><xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns="http://www.w3.org/1999/xhtml"  xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xbl="http://www.w3.org/ns/xbl"  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:exf="http://www.exforms.org/exf/1-0"  xmlns:ajx="http://www.ajaxforms.net/2006/ajx" xmlns:justep="http://www.justep.com/x5#" xsl:version="2.0">    <xhtml:head id="head">     <script type="text/javascript" src="/base/base.js"/>      <script type="text/javascript" src="/form/form.js"/>      <xhtml:style>table{ table-layout:fixed; } body { padding: 0px; margin: 0px; } div.header{ font-size:12px; font:bold; } a.task{ font-size:12px; color:#479cd0; } .className{ font-size:12px; word-break : keep-all; overflow: hidden; text-overflow:ellipsis; } a:link { text-decoration:none; color:#1f3a87; font-size:12px; } a:visited { text-decoration:none; color:#1f3a87; font-size:12px; } a:hover { text-decoration:underline; color:#0A73E9; font-size:12px; } a:active { text-decoration:none; color:#1f3a87; font-size:12px; } body{ background:#fff; color:#000; font-family: "宋体"; font-size:12px; line-height: 16px; }</xhtml:style>      <xhtml:script> <![CDATA[  			tabActive = function(){   				refreshThisWindow();   			}   	   			/*  			setInterval("refreshThisWindow()",300000);  			*/  			  			refreshThisWindow=function(){  				document.location.reload();  			}		]]> </xhtml:script>      <xsl:if test="/root/flag = 'false'">       <xhtml:script>function isActionError(){ var message = document.getElementById("errorMessage").innerText; if (message == 'JUSTEP-ERROR-1000'){ justep.Request.bizSessionOverdue(); }else{ alert(message); } }</xhtml:script>     </xsl:if>      <xsl:if test="/root/flag = 'true'">       <xhtml:script>function isActionError(){ }</xhtml:script>     </xsl:if>   </xhtml:head>    <xhtml:body onload="isActionError(); ">     <xhtml:div id="errorMessage" style="display:none">       <xsl:value-of select="/root/message"/>     </xhtml:div>      <!-- 可视部分 即用户描述的界面 -->      <xhtml:div id="visible-element" style="height:100%;width:100%;overflow: hidden;">       <xsl:if test="/root/flag = 'true'">         <xhtml:table style="width:100%;overflow: hidden;">           <xsl:for-each select="/root/data/*/tasks/SA_Task">             <xsl:variable name="onclickvalue">justep.Portal.openWindow('              <xsl:value-of select="fXM"/>', '              <xsl:value-of select="$url"/>', '              <xsl:value-of select="sCreatorFID"/>');            </xsl:variable>              <tr>               <td style="width:12px"/>                <td class="className" width="100%">                 <nobr>                   <a class="className">                     <xsl:attribute name="href">javascript:void(0)</xsl:attribute>                      <xsl:attribute name="onclick">                       <xsl:value-of select="$onclickvalue"/>                     </xsl:attribute>                      <xsl:value-of select="fXM"/>                   </a>                 </nobr>               </td>                <td style="width:1px"/>                <td style="width:61px" class="className"/>                <td style="width:1px"/>                <td style="width:63px;" class="className">                 <nobr>                   <xsl:value-of select="format-dateTime(fQDRQ, '[Y0001]-[M01]-[D01]')"/>                 </nobr>               </td>             </tr>           </xsl:for-each>         </xhtml:table>       </xsl:if>     </xhtml:div>   </xhtml:body> </xhtml:html>
Copy after login


Reply to discussion (solution)

You look at the structure of xml

You look at the structure of xml


Explain the structure of xml? Are you talking about another .p xml configuration file?

Without xml, xslt is useless.

Without xml, xslt is useless at all.

Oh, can you help me take a look at the content of this file? These two are corresponding in the project, .xhtml and .p

<p:config xmlns:p="http://www.orbeon.com/oxf/pipeline"	xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"	xmlns:xs="http://www.w3.org/2001/XMLSchema" 	xmlns:xslt="http://www.orbeon.com/oxf/processors" 	xmlns:oxf="http://www.orbeon.com/oxf/processors"	xmlns:justep="http://www.justep.com/x5#">		<p:param type="output" name="data"/>		<p:processor name="justep:init-bsessionid"/>		<p:processor name="oxf:request">        <p:input name="config">            <config stream-type="xs:anyURI" xmlns:xs="http://www.w3.org/2001/XMLSchema">                <include>/request/parameters/parameter</include>            </config>        </p:input>        <p:output name="data" id="parameters"/>    </p:processor>		<p:processor name="oxf:xslt"> 		<p:input name="data" href="#parameters"/>   		<p:input name="config"> 			<action xsl:version="2.0" name="querySubmitTaskAction"				process="/SA/task/taskView/taskViewProcess"				activity="mainActivity"				executor="{request/parameters/parameter[./name/text()='executor']/value/text()}">			</action>		</p:input>		<p:output name="data" id="query"/>	</p:processor>			<p:processor name="justep:excute-action"> 		<p:input name="request" href="#query"/>  		<p:output name="response" id="tasks"/> 	</p:processor>        <p:processor name="oxf:xslt">    	<p:input name="data" href="#tasks"/>    	<p:input name="parameters" href="#parameters"/>    	<p:input name="config" href="oxf:/UI/SA/task/taskView/submitTasksView.xhtml"/>    	<p:output name="data" ref="data"/>    </p:processor>    </p:config>
Copy after login

are not. You open the xml and find this: /root/data is

No. You open the xml and find this: /root/data is

No, I searched the entire project and found no less than a hundred places where this /root/data is used, but I just couldn’t find that xml.

Without xml, xslt is useless

What is your QQ number? I would like to ask QQ directly. .

This is an xslt file, its function is to format xml output. So there is no corresponding xml file, and the analysis of this xslt file is a bit troublesome.

This is an xslt file, its function is to format xml Formatted output. So there is no corresponding xml file, and it is a bit troublesome to analyze this xslt file.

This was done by someone else. I want to make a function based on it. I really can’t find this xml file. Can I Can QQ help remotely? I don't know anything about it, and I don't even know how to start.

Feel free to add me at Q399811910. Will I be delayed?

The xml configuration file was really not found!

I am using the x5 platform development tool. Does anyone know about it? Can you provide remote assistance?

I really need it urgently.

The problem has been solved, it is the xml generated in ACTION,?. .

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1665
14
PHP Tutorial
1269
29
C# Tutorial
1249
24
Understanding HTML, CSS, and JavaScript: A Beginner's Guide Understanding HTML, CSS, and JavaScript: A Beginner's Guide Apr 12, 2025 am 12:02 AM

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

HTML: The Structure, CSS: The Style, JavaScript: The Behavior HTML: The Structure, CSS: The Style, JavaScript: The Behavior Apr 18, 2025 am 12:09 AM

The roles of HTML, CSS and JavaScript in web development are: 1. HTML defines the web page structure, 2. CSS controls the web page style, and 3. JavaScript adds dynamic behavior. Together, they build the framework, aesthetics and interactivity of modern websites.

The Future of HTML, CSS, and JavaScript: Web Development Trends The Future of HTML, CSS, and JavaScript: Web Development Trends Apr 19, 2025 am 12:02 AM

The future trends of HTML are semantics and web components, the future trends of CSS are CSS-in-JS and CSSHoudini, and the future trends of JavaScript are WebAssembly and Serverless. 1. HTML semantics improve accessibility and SEO effects, and Web components improve development efficiency, but attention should be paid to browser compatibility. 2. CSS-in-JS enhances style management flexibility but may increase file size. CSSHoudini allows direct operation of CSS rendering. 3.WebAssembly optimizes browser application performance but has a steep learning curve, and Serverless simplifies development but requires optimization of cold start problems.

The Future of HTML: Evolution and Trends in Web Design The Future of HTML: Evolution and Trends in Web Design Apr 17, 2025 am 12:12 AM

The future of HTML is full of infinite possibilities. 1) New features and standards will include more semantic tags and the popularity of WebComponents. 2) The web design trend will continue to develop towards responsive and accessible design. 3) Performance optimization will improve the user experience through responsive image loading and lazy loading technologies.

HTML vs. CSS vs. JavaScript: A Comparative Overview HTML vs. CSS vs. JavaScript: A Comparative Overview Apr 16, 2025 am 12:04 AM

The roles of HTML, CSS and JavaScript in web development are: HTML is responsible for content structure, CSS is responsible for style, and JavaScript is responsible for dynamic behavior. 1. HTML defines the web page structure and content through tags to ensure semantics. 2. CSS controls the web page style through selectors and attributes to make it beautiful and easy to read. 3. JavaScript controls web page behavior through scripts to achieve dynamic and interactive functions.

HTML: Building the Structure of Web Pages HTML: Building the Structure of Web Pages Apr 14, 2025 am 12:14 AM

HTML is the cornerstone of building web page structure. 1. HTML defines the content structure and semantics, and uses, etc. tags. 2. Provide semantic markers, such as, etc., to improve SEO effect. 3. To realize user interaction through tags, pay attention to form verification. 4. Use advanced elements such as, combined with JavaScript to achieve dynamic effects. 5. Common errors include unclosed labels and unquoted attribute values, and verification tools are required. 6. Optimization strategies include reducing HTTP requests, compressing HTML, using semantic tags, etc.

HTML vs. CSS and JavaScript: Comparing Web Technologies HTML vs. CSS and JavaScript: Comparing Web Technologies Apr 23, 2025 am 12:05 AM

HTML, CSS and JavaScript are the core technologies for building modern web pages: 1. HTML defines the web page structure, 2. CSS is responsible for the appearance of the web page, 3. JavaScript provides web page dynamics and interactivity, and they work together to create a website with a good user experience.

HTML: Is It a Programming Language or Something Else? HTML: Is It a Programming Language or Something Else? Apr 15, 2025 am 12:13 AM

HTMLisnotaprogramminglanguage;itisamarkuplanguage.1)HTMLstructuresandformatswebcontentusingtags.2)ItworkswithCSSforstylingandJavaScriptforinteractivity,enhancingwebdevelopment.

See all articles