如何使用url param与jQuery选择单选按钮?

时间:2013-04-13 14:27:22

标签: javascript jquery jquery-selectors radio-button url-parameters

我有这个网址:../foo::bar{2}233{13}171{1}1{20}0.html

参数位于{},后面是值。

有了这个,我就能得到这些值:

var vars = [], hash;
var q = document.URL.split('bar')[1];
if(q != undefined){
    q = q.split('%7B');
    for(var i = 0; i < q.length; i++){
        hash = q[i].split('%7D');
        vars.push(hash[1]);
        vars[hash[0]] = hash[1];
    }
};

如何设置匹配的单选按钮selected以提交表单?

<input id="233" type="radio" value="233" name="id[2]">
<label title="orange" for="233">
    <img style="background: #FF6600; color: #668014" src="img/orange.gif">
</label>

此外,我还想使用以下style的{​​{1}}作为其他div的样式值。对于页面上的选择,我有:

img

$('label img').click( function() { var bg = $(this).css('background-color'); var bc = $(this).css('color'); $('.basic').css("background-color", bg); $('.detail').css("border-color", bc); }); 还不够......

0 个答案:

没有答案