如果我想根据分配给变量的随机数更改区域标签的 href 。我怎样才能做到这一点 ?
我尝试过使用公式$('#id').attr('href', 'link');
,但对我没有用
这是我的代码:
<body>
<script>
var choose = Math.floor((Math.random()*4)+1);
if (choose == 1){
$('#first').attr('href', 'true.html');
$('#second').attr('href', 'false.html');}
else{
$('#first').attr('href', 'false.html');
$('#second').attr('href', 'true.html');}
</script>
<map name="rockpos" id="rockys">
<area shape="rect" id="first" coords="1,1,137,270" href="" />
<area shape="rect" id="second"coords="208,4,340,273" href="" />
</map>
</body>