Sorry,I have to answer my own question.I've found the solution.Just tested in ios9
This is my code:
<input type="button" onclick="redirect()" value="Redirect">
<script>
var redirect = function() {
window.location.href = "prefs:root=Settings";
}
</script>
When I open this page in Safari and click the button,it can redirect to the Settings
If I want to redirect to Settings->General
,it should be:
window.location.href = "prefs:root=General";
If I want to redirect to the Settings->General->Profiles
,then should be:
window.location.href = "prefs:root=General&path=ManagedConfigurationList";
And I found the Preference list http://iphonedevwiki.net/index.php/Preferences.app