When you write an event to the input the iframe is not loaded yet so you can't get the value you should change it to something like this so that when you click on it it's loaded
<iframe src="2.html" id="i">iframe>
<input type="button" onclick="get()" value="输出iframe中变量" />
<script>
function get(){
alert(i.contentWindow.role1)
}
script>