html1:
<button class="layui-btn" onclick="javascript:window.open('objResultList.html?refCaseNo='+ document.getElementById('caseNo').value)"> <i class="fa fa-save"></i>详情</button>
html2:
<script type="text/javascript">
var str=window.location .href;//取地址参数部分
var refCaseNo = str.substr(str.indexOf('=')+1);
alert("bb:"+str);//传递过去的是:http://localhost:8080/pages/3yysj/objResultList.html?refCaseNo=CourtDetail_14127_20190329170345
alert("cc:"+refCaseNo);//CourtDetail_14127_20190329170345
</script>