如何通过XSLT 将文件的doctype 干净地设置为HTML5 <!DOCTYPE html>(在本例中为collective.xdv)
以下是我最好的谷歌foo能够找到的:
<xsl:output
method="html"
doctype-public="XSLT-compat"
omit-xml-declaration="yes"
encoding="UTF-8"
indent="yes" />
Run Code Online (Sandbox Code Playgroud)
生产:
<!DOCTYPE html PUBLIC "XSLT-compat" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Run Code Online (Sandbox Code Playgroud) 如何定位jquery UI对话框,使其进入未由center,top等定义的位置.
谢谢,我试图像posible一样具体.
每次我点击底部的按钮打开jquery对话框时,页面都会自动滚动到顶部.我正在使用firefox浏览器.
请指教.
非常感谢.