-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
51 lines (39 loc) · 1.45 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
function cobun() {
// const value = document.getElementById('value').value;
/*
const data = { value: 123};
const JSONdata = JSON.stringify(data);
alert(JSONdata);
window.location.href = "shoop.hmtl?data=" + JSONdata;
document.cookie ="cobun ="+value;
// استيراد الوحدة النمطية
import Session from "./session";
// إنشاء متغير جلسة
const session = new Session("cobun", "");
// ربط حدث النقر بزر الإرسال
document.getElementById("sendValue").onclick = () => {
// الحصول على قيمة الحقل النصي
const value = document.getElementById("value").value;
// تعيين قيمة متغير الجلسة
session.setValue(value);
*/
const value = document.getElementById("sendcobunvlaue").value;
const session = { 'myCobunValu': value, };
sessionStorage.setItem('myCobunValu', JSON.stringify(session));
alert(value);
// الانتقال إلى الصفحة الثانية
window.location = "shoop.html";
return value;
}
function outfill2(value2) {
console.log(this.value2);
var value3 = value2;
var acartnu = document.getElementById('cobunvvv');
acartnu.setAttribute('value', value3);
}
function outfill() {
this.value2 = document.getElementById('input2').value ;
return this.value2;
//var acartnum = document.getElementById('sendcobunvlaue');
//acartnum.setAttribute('value', value2);
}