Skip to content

Instantly share code, notes, and snippets.

@zaki-yama
Created October 20, 2017 11:50
Show Gist options
  • Save zaki-yama/7d2f3c36b91eb280c5bf5f6bf554e39d to your computer and use it in GitHub Desktop.
Save zaki-yama/7d2f3c36b91eb280c5bf5f6bf554e39d to your computer and use it in GitHub Desktop.
Visualforceにコントローラー経由でhtml lang属性をセットできるか検証
<apex:page showHeader="false" applyHtmlTag="false" doctype="html-5.0" controller="HtmlLangTestController">
<html lang="{!lang}">
<head></head>
<body>hello</body>
</html>
</apex:page>
public with sharing class HtmlLangTestController {
public String lang { get { return 'foo'; } set; }
}
@zaki-yama
Copy link
Author

結果

ss 2017-10-20 20 51 18

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment