点击按钮在当前页面打开目标内容
目标参数:onclick="location.href=' '"
<input type="button" onclick="location.href='./_myPage.php'" value="打开页面">
点击按钮在新的页面打开目标内容
目标参数:onclick="window.open(' ')"
<input type="button" onclick="window.open('./_newPage.php')" value="打开页面">
0 条评论