如果你对该文章中的内容有疑问/不解,可以点击此处链接提问
要注明问题和此文章链接地址 点击此处跳转
<form class="layui-form">
<select name="links" lay-verify="required" οnchange=mbar(this) name="select">
<option value="" selected="selected" disabled="disabled">友情链接</option>
<?php if(is_array($link)){ foreach($link as $K=>$vo){ ?>
<option value="{$vo['url']}">{$vo['name']}</option>
<?php }} ?>
</select>
</form>
<script type="text/javascript">
function mbar(sobj) {
var docurl =sobj.options[sobj.selectedIndex].value;
if (docurl != "") {
open(docurl,'_blank');
sobj.selectedIndex=0;
sobj.blur();
}
}
</script>
王明昌博客
