0

我想用用户在 jquery 对话框输入字段中指定的用户名替换“间接”类的 id 中的用户名字符串。问题是我不能使用 this.id = this.id.replace('username', myvalue) 因为 $this 将引用到jquery对话框ui中的输入元素....请帮我用任何其他方法解决这个问题

<img src="images/AOL_button.png" id='http://openid.aol.com/username' class="indirect" />
<img src="images/google_button.png" id='https://www.username.google.com/accounts/o8/id' class="direct"/> 

==================================================== ===============================

$(.indirect).click(function(){
   $("#dialog").dialog({
     buttons: {
            "OK": function() {
                if($('#username').val() == '') {
                    $('#username').focus();
                } else {
                    var myvalue= $("#username").val();
                    var provider_url_post= // replace "username" in google id with myvalue
                    alert(provider_url_post);
})
4

1 回答 1

2

您的 JS 中有一堆语法错误,但假设这些错误在您的实际代码中不存在:

$('.indirect').click(function() {
    var self = this;

    $("#dialog").dialog({
        buttons: {
            "OK": function() {
                if (!$('#username').val()) { // just check the truthiness
                    $('#username').focus();
                } else {
                    var myvalue = $("#username").val();
                    self.id = self.id.replace('username', myvalue);
                }
            }
        }
    });
});​
于 2012-05-03T19:03:00.847 回答