1.eval:计算字符串格式的表达式的值或执行字符串格式的js语句
var input= prompt("js语句");
var outcome=eval(input);
2.encodeURI:编码非单字符
<script type="text/javascript">
var url="http://www.baidu.com";
var input=prompt("百度一下");
input=encodeURI(input);
alert("编码后的地址为"+url+input);
</style>
****解决的问题:在统一资源定位符URL中是不允许出现多字节字符的
3.decondeURI:将URL中的非法字符编码后的内容,解码回复称原文