Jump to content
  • 0

Помощь в соеденения двух отобранных элементов с помощью цикла


ELBegemotos
 Share

Question

Всем привет:)У меня вопрос я вот решил написать скрипт,но вырисовывается проблемка я задал в переменную дату и с помощью цикла перебираю элементы массива...допусти мне надо выделить первые два элемента это ладно выводит,но проблема в том например если я хочу прибавить к этим двум выделеннм цифрам 6 получается ,что прибавляется к каждому элементу я пробывал через функцию parseInt() соеденить ,но не полуается помогите пжлст

Вот мой код

$(document).ready(function() { 

var date= "21.11.2011";

for( i=0;i<2;i++) {
var res=parseInt(date[i]);
var result=res + 6;

$(".date").before(result);
};


}); //Конец ready

Спасибо,но я уже решил данный вопрос вот таким кодом

$(document).ready(function() { 

var date= "21.11.2011";

for( i=0;i<2;i++) {
var res=date[0]+date[1];
var newres=parseInt(res);
};
var result=newres + 10;
$(".date").before(result);

}); //Конец ready

Но все же я хотел бы услышать ваши комментарии может есть более короткий способ получение результата

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy